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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
131 additions and
131 deletions
-
.github/workflows/daily.yaml
-
.github/workflows/lint.yaml
-
.github/workflows/publish.yaml
|
|
@ -2,7 +2,7 @@ name: Daily check |
|
|
|
|
|
|
|
on: |
|
|
|
schedule: |
|
|
|
- cron: '0 4 * * *' |
|
|
|
- cron: "0 4 * * *" |
|
|
|
|
|
|
|
jobs: |
|
|
|
test: |
|
|
|
|
|
@ -53,7 +53,7 @@ jobs: |
|
|
|
strategy: |
|
|
|
fail-fast: false |
|
|
|
matrix: |
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10"] |
|
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] |
|
|
|
needs: |
|
|
|
- check-commits |
|
|
|
- check-linting |
|
|
|
|
|
@ -3,7 +3,7 @@ name: Publish |
|
|
|
on: |
|
|
|
push: |
|
|
|
tags: |
|
|
|
- 'v*' |
|
|
|
- "v*" |
|
|
|
|
|
|
|
jobs: |
|
|
|
publish: |
|
|
@ -11,7 +11,7 @@ jobs: |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
with: |
|
|
|
fetch-depth: '0' |
|
|
|
fetch-depth: "0" |
|
|
|
- name: Set up Python 3.10 |
|
|
|
uses: actions/setup-python@v3 |
|
|
|
with: |
|
|
|