Browse Source

Merge pull request #382 from marcospereirampj/381-add-support-for-python-311

[WIP] 381 add support for python 311
pull/383/head
Richard Nemeth 2 years ago
committed by GitHub
parent
commit
ef6e6724ba
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/bump.yaml
  2. 2
      .github/workflows/daily.yaml
  3. 6
      .github/workflows/lint.yaml
  4. 4
      .github/workflows/publish.yaml

4
.github/workflows/bump.yaml

@ -2,8 +2,8 @@ name: Bump version
on: on:
workflow_run: workflow_run:
workflows: [ "Lint" ]
branches: [ master ]
workflows: ["Lint"]
branches: [master]
types: types:
- completed - completed

2
.github/workflows/daily.yaml

@ -2,7 +2,7 @@ name: Daily check
on: on:
schedule: schedule:
- cron: '0 4 * * *'
- cron: "0 4 * * *"
jobs: jobs:
test: test:

6
.github/workflows/lint.yaml

@ -2,9 +2,9 @@ name: Lint
on: on:
push: push:
branches: [ master ]
branches: [master]
pull_request: pull_request:
branches: [ master ]
branches: [master]
jobs: jobs:
check-commits: check-commits:
@ -53,7 +53,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
needs: needs:
- check-commits - check-commits
- check-linting - check-linting

4
.github/workflows/publish.yaml

@ -3,7 +3,7 @@ name: Publish
on: on:
push: push:
tags: tags:
- 'v*'
- "v*"
jobs: jobs:
publish: publish:
@ -11,7 +11,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
fetch-depth: '0'
fetch-depth: "0"
- name: Set up Python 3.10 - name: Set up Python 3.10
uses: actions/setup-python@v3 uses: actions/setup-python@v3
with: with:

Loading…
Cancel
Save