Skip to content

Release v0.5.0

Release v0.5.0 #71

Workflow file for this run

name: traval
on:
# Trigger the workflow on push or pull request on master,
# and only on pull-requests on dev branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: "pip"
cache-dependency-path: pyproject.toml
- name: Install Python dependencies
run: |
pip install .
- name: ruff-lint
uses: chartboost/ruff-action@v1
- name: ruff-format
uses: chartboost/ruff-action@v1
with:
args: "format --check"
test:
needs: lint
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[ci]
- name: Run pytest
run: |
pytest
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml