Switch VolumeFsVersion enum fields to proper standard (#2432) #9526
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Cancel previous runs of the same PR but do not cancel previous runs on main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
link: | |
name: Ruff linting | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-cached-python | |
with: | |
version: "3.10" | |
- run: inv lint | |
- run: inv lint-protos | |
type_check: | |
name: Static type checks | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-cached-python | |
with: | |
version: "3.10" | |
- run: inv protoc | |
- run: pip install -e . # gets all dependencies and the package itself into python env | |
- name: Build type stubs | |
run: inv type-stubs | |
- run: inv type-check | |
check-copyright: | |
name: Check copyright | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-cached-python | |
with: | |
version: "3.10" | |
- run: inv check-copyright |