Skip to content

Commit

Permalink
GitHub Actions: Start testing on Python 3.12-dev (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Apr 24, 2023
1 parent ce6f7f0 commit db2ff3b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -38,7 +38,8 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11-dev"
- "3.11"
- "3.12-dev"
- "pypy-2.7"
- "pypy-3.7"
- "pypy-3.8"
Expand Down Expand Up @@ -68,7 +69,7 @@ jobs:
ref: ${{ inputs.tag || github.ref }}
- uses: "actions/setup-python@v4"
with:
python-version: "3.10"
python-version: "3.11"
cache: "pip"
- name: "Update pip"
run: python -m pip install --upgrade pip setuptools wheel
Expand All @@ -77,14 +78,14 @@ jobs:
- name: "Run 'build'"
run: "python -m build"
- name: "Upload sdist artifact"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: sdist
path: |
dist/pyasn1*.tar.gz
if-no-files-found: error
- name: "Upload wheel artifact"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheel
path: |
Expand Down

0 comments on commit db2ff3b

Please sign in to comment.