Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHllm committed Nov 19, 2024
1 parent 07795bb commit b3ac121
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,42 +13,42 @@ env:


jobs:
test:
name: Test with Python ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.11"
- "3.12"
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
test:
name: Test with Python ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
- "3.11"
- "3.12"
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install system dependencies
run: sudo apt-get install -y poppler-utils
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Install system dependencies
run: sudo apt-get install -y poppler-utils
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}

- name: Install tox
run: python -m pip install tox-gh
- name: Setup test suite
run: tox -vv --notest
- name: Run test suite
run: tox --skip-pkg-install
- name: Install tox
run: python -m pip install tox-gh
- name: Setup test suite
run: tox -vv --notest
- name: Run test suite
run: tox --skip-pkg-install

build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# needs:
# - test
needs:
- test

steps:
- name: Checkout repository
Expand Down

0 comments on commit b3ac121

Please sign in to comment.