enable empty emails/schemas #127
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
# precommit actions for fellows-experimental branch. | |
name: test | |
on: | |
push: | |
branches: | |
- 'fellows-experimental' # TODO: update branch name to dev | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11"] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
# Install a specific version of uv. | |
version: "0.5.7" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: ./.github/actions/setup-python-env | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Run Black. | |
uses: psf/black@stable | |
with: | |
options: "--check --verbose" | |
src: "./src/webapp" | |
version: "~= 22.0" | |
- name: Using pylint | |
run: | | |
uv run pylint $(git ls-files './src/webapp/*.py') --errors-only | |
- name: Test with pytest | |
run: | | |
uv run coverage run -m pytest -v -s ./src/webapp/ | |
- name: Generate Coverage Report | |
run: | | |
uv run coverage report -m |