update to use pyproject instead of setup #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches-ignore: [] | |
schedule: | |
- cron: '0 0 * * SUN' | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python: [3.7, 3.8, 3.9] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.X | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install the package itself | |
run: | | |
pip install poetry | |
poetry install | |
- name: Test with pytest | |
run: | | |
pip install pytest | |
pip install pytest-cov | |
pytest --cov-report term --cov=fitter | |
- name: coveralls | |
run: | | |
pip install coverage | |
coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |