Merge pull request 'chore(deps): update actions/setup-go action to v5… #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check code | |
on: | |
push: | |
branches: [main, master, dev] | |
pull_request: | |
branches: [main, master, dev] | |
jobs: | |
check-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: install hatch | |
run: pip install -U hatch | |
- name: test codestyle | |
run: hatch run lint:style | |
- name: test typing | |
run: hatch run lint:typing | |
- name: run tests | |
run: hatch run default:test |