Skip to content

Merge pull request #76 from aramis-lab/dependabot/github_actions/acti… #337

Merge pull request #76 from aramis-lab/dependabot/github_actions/acti…

Merge pull request #76 from aramis-lab/dependabot/github_actions/acti… #337

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Hatch
run: pipx install hatch
- name: Run static analysis
run: hatch fmt --check
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
include:
- os: macos-latest
python-version: '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install Hatch
run: pipx install hatch
- name: Run tests
run: hatch run test