Bump wtforms from 3.1.1 to 3.1.2 #572
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: Lint and Test | |
on: pull_request | |
jobs: | |
static-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11.5 | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files | |
tests: | |
runs-on: ubuntu-latest | |
needs: static-checks | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v2 | |
- name: Run tests | |
run: | | |
just build | |
just up | |
just test |