Skip to content

Miscellaneous config updates #45

Miscellaneous config updates

Miscellaneous config updates #45

Workflow file for this run

name: Tests
on: push
jobs:
test:
name: Run tests
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install
run: |
python -m pip install --upgrade pip pipenv
make install
- name: Tests
run: make coveralls
lint:
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install
run: |
python -m pip install --upgrade pip pipenv
make install
- name: Lint
run: make lint