Added baseline for Table ACL migration #219
Workflow file for this run
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: build | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: [main] | |
env: | |
HATCH_VERSION: 1.7.0 | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
pyVersion: [ '3.10' ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
cache: 'pip' | |
cache-dependency-path: '**/pyproject.toml' | |
python-version: ${{ matrix.pyVersion }} | |
- name: Install hatch | |
run: pip install hatch==$HATCH_VERSION | |
- name: Verify linting | |
run: | | |
hatch run lint:verify | |
- name: Run unit tests | |
run: | | |
hatch run unit:test |