CI for 0b44a9856eb9c97d4c4a6fd0121c2cf67514f8ad on 272/merge #8
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: ci | |
run-name: CI for ${{ github.sha }} on ${{ github.ref_name }} | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
- "release-**" | |
- "track/**" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-24.04 | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install dependencies | |
run: python3 -m pip install tox | |
- name: Run linters | |
run: tox -e lint | |
tests: | |
name: Run Tests | |
uses: ./.github/workflows/tests.yaml |