octodns-netbox-dns/.github/workflows/check_code.yml
renovate-bot d9358a0082
All checks were successful
build and publish / update-changelog (pull_request) Successful in 8s
check code / check-code (pull_request) Successful in 18s
build and publish / build-pypackage (pull_request) Successful in 46s
Update actions/checkout action to v4
2024-02-20 20:14:41 +01:00

28 lines
501 B
YAML

name: check code
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- 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