Skip to content

Bump pre-commit from 3.2.2 to 3.3.3 #186

Bump pre-commit from 3.2.2 to 3.3.3

Bump pre-commit from 3.2.2 to 3.3.3 #186

Workflow file for this run

name: Lint and Test
on: pull_request
jobs:
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Run static checks
uses: pre-commit/action@v3.0.0
test:
runs-on: ubuntu-latest
# Tests are expensive to run, don't run them unless the other checks pass
needs: [static-checks]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Dependencies
run: pip install pytest pytest-cov
- name: Test with pytest
run: pytest --cov .
build:
runs-on: ubuntu-latest
needs:
- static-checks
steps:
- uses: actions/checkout@v3
- uses: extractions/setup-just@v1
- name: Build image
run: just build