-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up GitHub Actions to run code checks
- Loading branch information
Showing
4 changed files
with
83 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Run affils code checks | ||
on: [push, pull_request] | ||
permissions: | ||
contents: read | ||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- name: Set up Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install front end and back end dependencies | ||
run: | | ||
npm install | ||
pip install -r requirements.txt | ||
- name: Run all code checks | ||
run: invoke check |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Do not edit directly. This file is generated. | ||
|
||
astroid==3.1.0 | ||
black==24.4.1 | ||
blinker==1.7.0 | ||
click==8.1.7 | ||
coverage==7.5.0 | ||
dill==0.3.8 | ||
Flask==3.0.3 | ||
iniconfig==2.0.0 | ||
invoke==2.2.0 | ||
isort==5.13.2 | ||
itsdangerous==2.2.0 | ||
Jinja2==3.1.3 | ||
markdown-it-py==3.0.0 | ||
MarkupSafe==2.1.5 | ||
mccabe==0.7.0 | ||
mdformat==0.7.17 | ||
mdurl==0.1.2 | ||
mypy==1.10.0 | ||
mypy-extensions==1.0.0 | ||
packaging==24.0 | ||
pathspec==0.12.1 | ||
platformdirs==4.2.1 | ||
pluggy==1.5.0 | ||
pylint==3.1.0 | ||
pytest==8.1.1 | ||
python-dotenv==1.0.1 | ||
tomlkit==0.12.4 | ||
typing_extensions==4.11.0 | ||
Werkzeug==3.0.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