-
Notifications
You must be signed in to change notification settings - Fork 685
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Run
make lint
job in GitHub Actions
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
container: ubuntu:focal | ||
steps: | ||
- name: Install Git | ||
run: | | ||
apt-get update && apt-get install --yes git | ||
- uses: actions/checkout@v3 | ||
- name: Install dependencies | ||
run: | | ||
apt-get install --yes --no-install-recommends \ | ||
build-essential python3-virtualenv python3-dev enchant file | ||
virtualenv .venv | ||
# TODO: this should be one step, but there are too many conflicting dependencies | ||
./.venv/bin/pip install -r securedrop/requirements/python3/test-requirements.txt | ||
./.venv/bin/pip install -r securedrop/requirements/python3/requirements.txt | ||
./.venv/bin/pip install -r securedrop/requirements/python3/develop-requirements.txt | ||
- name: Run lint | ||
run: | | ||
git config --global --add safe.directory $GITHUB_WORKSPACE | ||
source .venv/bin/activate | ||
make lint |