Lint and Test #1151
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: Lint and Test | |
# https://docs.github.com/en/free-pro-team@latest/actions/guides/building-and-testing-python | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: 0 2 * * * # run at 2 AM UTC | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 12 | |
matrix: | |
python-version: [3.7, 3.8, 3.9] | |
os: [ubuntu-latest] | |
steps: | |
- name: Cancel Workflow Action | |
uses: styfle/[email protected] | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# pip install . | |
- name: Test with pytest | |
run: pytest |