Skip to content

chore(pyproject.toml): Trying to fix install #8

chore(pyproject.toml): Trying to fix install

chore(pyproject.toml): Trying to fix install #8

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test and Publish
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
check-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e ".[dev]"
- name: Check style with ruff
run: |
ruff check .
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -e ".[test]"
- name: Test with pytest
run: |
pytest .
release:
runs-on: ubuntu-latest
needs: [check-style, test]
concurrency: release
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: |
pip install --upgrade pip
pip install python-semantic-release
- name: Update version and push
run: |
semantic-release version
publish:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
needs: [check-format, test]

Check failure on line 65 in .github/workflows/test_and_publish.yml

View workflow run for this annotation

GitHub Actions / Test and Publish

Invalid workflow file

The workflow is not valid. .github/workflows/test_and_publish.yml (Line: 65, Col: 13): Job 'publish' depends on unknown job 'check-format'.
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install flit
- name: Publish with flit
run: |
flit publish