-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to run checks for the API and site (#64)
- Include Python dev dependencies for checks runner - Configure Python linting tools and provide compatible VS Code settings - Update production deployment to run only when checks succeed - This will fail checks, see #64 and #65
- Loading branch information
Showing
8 changed files
with
159 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
PYTHONPATH=apps/api/src | ||
# For VS Code Python extension | ||
PYTHONPATH=apps/api/src |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
name: Deploy Production | ||
|
||
on: | ||
push: | ||
workflow_run: | ||
workflows: | ||
- Run Checks | ||
types: | ||
- completed | ||
branches: | ||
- main | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
name: Run Checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
check-api: | ||
name: Check API | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: apps/api | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.9" | ||
cache: "pip" | ||
cache-dependency-path: | | ||
apps/api/requirements.txt | ||
apps/api/requirements-dev.txt | ||
- name: Install xmlsec dependencies | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: libxml2-dev libxmlsec1-dev libxmlsec1-openssl | ||
version: 1.0 | ||
|
||
- name: Install Python dependencies | ||
run: pip install -r requirements.txt -r requirements-dev.txt | ||
|
||
- name: Format with Black | ||
uses: reviewdog/action-black@v3 | ||
with: | ||
workdir: apps/api | ||
level: warning | ||
reporter: github-pr-review | ||
|
||
- name: Lint with flake8 | ||
uses: reviewdog/action-flake8@v3 | ||
with: | ||
workdir: apps/api | ||
level: warning | ||
reporter: github-pr-review | ||
|
||
- name: Cache `.mypy_cache` | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ github.workspace }}/.mypy_cache | ||
key: ${{ runner.os }}-python3.9-mypy-cache | ||
|
||
- name: Lint with mypy (review) | ||
uses: tsuyoshicho/action-mypy@v4 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
workdir: apps/api | ||
level: error | ||
reporter: github-pr-review | ||
|
||
- name: Run mypy (check) | ||
uses: tsuyoshicho/action-mypy@v4 | ||
if: github.event_name == 'push' | ||
with: | ||
workdir: apps/api | ||
level: error | ||
reporter: github-check | ||
|
||
- name: Run tests with pytest | ||
run: pytest | ||
# uses: reviewdog/action-pytest@v1 (WIP) | ||
# with: | ||
# reporter: github-pr-review | ||
# level: error | ||
|
||
check-frontend: | ||
name: Check Site | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up pnpm | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
|
||
- name: Set up Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: "pnpm" | ||
|
||
- name: Install frontend dependencies | ||
run: pnpm install | ||
|
||
- name: Format with Prettier | ||
uses: EPMatt/reviewdog-action-prettier@v1 | ||
with: | ||
level: warning | ||
reporter: github-pr-review | ||
prettier_flags: apps/site/src | ||
|
||
- name: Lint with ESLint (review) | ||
uses: reviewdog/action-eslint@v1 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
level: error | ||
reporter: github-pr-review | ||
eslint_flags: apps/site/src | ||
|
||
- name: Lint with ESLint (check) | ||
uses: reviewdog/action-eslint@v1 | ||
if: github.event_name == 'push' | ||
with: | ||
workDir: apps/site | ||
level: error | ||
reporter: github-check | ||
eslint_flags: src |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
black==23.11.0 | ||
flake8==6.1.0 | ||
mypy==1.7.1 | ||
pytest==7.4.3 | ||
pytest-asyncio==0.21.1 | ||
pytest-asyncio==0.23.2 | ||
pytest-cov==4.1.0 | ||
|
||
uvicorn[standard]==0.23.2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
extend-ignore = E203 |