Skip to content

Commit

Permalink
WIP: Run make lint job in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Oct 2, 2023
1 parent ea479d4 commit 5373382
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
container: ubuntu:focal
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
apt-get update && apt-get install --yes --no-install-recommends \
build-essential git 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/develop-requirements.txt
./venv/bin/pip install -r securedrop/requirements/python3/test-requirements.txt
- name: Run lint
run: |
source .venv/bin/activate
make lint

0 comments on commit 5373382

Please sign in to comment.