Skip to content

dependencies: (deps): bump the actions group across 1 directory with 5 updates #145

dependencies: (deps): bump the actions group across 1 directory with 5 updates

dependencies: (deps): bump the actions group across 1 directory with 5 updates #145

Workflow file for this run

name: Run Tests
# Run the test suite on pull requests and pushes to main branch
on:
pull_request:
push:
branches:
- develop
schedule:
- cron: '0 23 * * Sun'
jobs:
lint:
name: PEP8 (flake8)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.5.2
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5.1.0
with:
python-version: "3.10"
- name: Install flake8
run: |
python -m pip install --upgrade pip
python -m pip install flake8
- name: Run flake8
run: |
flake8 src tests
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch
run: |
python -m pip install --upgrade pip
python -m pip install hatch
- name: Run test suite
run: hatch run +py=${{ matrix.python-version }} test:run
# If you use this step and have a private repo- then you will need to get a
# token from codecov and
# save it as a github secret called CODECOV_TOKEN
- name: Upload to codecov
if: runner.os == 'macOS' && matrix.python-version == '3.13'
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
with:
#token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
files: ./coverage.xml