Skip to content

Merge pull request #25 from mimi1vx/reject #98

Merge pull request #25 from mimi1vx/reject

Merge pull request #25 from mimi1vx/reject #98

Workflow file for this run

---
name: ci
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
- name: Setup enviroment
run: pip install -r requirements-dev.txt
- name: Run tests + cov report
run: make test-with-coverage
- name: Check style
run: make checkstyle
- name: Upload coverage to CodeCov
uses: codecov/codecov-action@v3
with:
files: coverage.xml