Skip to content

Commit

Permalink
ci: test with CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Nov 20, 2023
1 parent 89fd38f commit 2fce4c5
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 1 deletion.
69 changes: 69 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Tests

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10

- name: Configure pip caching
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt')}}-${{ hashFiles('**/requirements-dev.txt') }}

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Validate against psf/black
run: python -m black --check alexi test scripts

- name: Validate against isort
run: python -m isort --profile black --check-only alexi test scripts

- name: Validate against flake8
run: python -m flake8 alexi test scripts

- name: Check type annotations via mypy
run: python -m mypy alexi test scripts

test:
needs: lint
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10

- name: Configure pip caching
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt')}}-${{ hashFiles('**/requirements-dev.txt') }}

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Run tests
run: |
python -m pytest --cov alexi
python -m coverage html
- name: Upload code coverage
uses: codecov/codecov-action@v3
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ __pycache__
*.egg-info/
.ipynb_checkpoints
indexdir/
ville.sainte-adele.qc.ca/
download/
export/
notebooks/
.coverage
7 changes: 7 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
black
isort
flake8
mypy
pytest
coverage
pytest-cov

0 comments on commit 2fce4c5

Please sign in to comment.