Skip to content

Commit

Permalink
Revert CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed May 13, 2024
1 parent bc6fef1 commit c30fb6f
Showing 1 changed file with 2 additions and 24 deletions.
26 changes: 2 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,54 +22,32 @@ jobs:
- run: tox -e ${{ matrix.tox-job }}
build:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - ${{ matrix.python }} ${{ matrix.build }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.12']
build: ['']
include:
- os: ubuntu-latest
python: 'pypy3.10'
build: ''
- os: ubuntu-latest
python: 'pypy3.9'
build: ''
- os: ubuntu-latest
python: 'pypy3.8'
build: ''
- os: ubuntu-latest
python: '3.8'
build: ''
- os: ubuntu-latest
python: '3.9'
build: ''
- os: ubuntu-latest
python: '3.10'
build: ''
- os: ubuntu-latest
python: '3.11'
build: ''
- os: ubuntu-latest
python: '3.12'
build: ''
- os: ubuntu-latest
python: '3.13-dev'
build: 'free-threading'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
if: ${{ matrix.build != 'free-threading' }}
with:
python-version: ${{ matrix.python }}
- name: Set up Python ${{ matrix.python }} using deadsnakes
uses: deadsnakes/[email protected]
if: ${{ matrix.build == 'free-threading' }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
nogil: true
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
Expand Down

0 comments on commit c30fb6f

Please sign in to comment.