Skip to content

Commit

Permalink
Adding github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Feb 19, 2021
1 parent 2514b0f commit 4f0d948
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches:
- master
pull_request: ~

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install -y texlive-latex-base gettext texlive-pictures texlive-latex-extra texlive-xetex libblas-dev liblapack-dev libatlas-base-dev gfortran
pip3 install --editable ".[dev]"
- name: Lint
run: |
pre-commit run --all-files
- name: Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python3 manage.py test
coverage run --source=survey --omit=survey/migrations/* ./manage.py test
coverage html
coveralls debug --service=gihtub

0 comments on commit 4f0d948

Please sign in to comment.