Skip to content

Fix Artifacts Import #36

Fix Artifacts Import

Fix Artifacts Import #36

Workflow file for this run

name: Lint
on:
push:
branches:
- "main"
- "*.latest"
pull_request:
workflow_dispatch:
permissions: read-all
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }}
cancel-in-progress: true
jobs:
lint:
name: Python 3.8
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup environment
uses: ./.github/actions/setup-environment
with:
python-version: "3.8"
- name: Run linters
run: hatch run lint:all
shell: bash
- name: Run typechecks
run: hatch run typecheck:all
shell: bash