Update Makefile #305
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: [ "master", "release"] | ||
paths: | ||
- '.github/workflows/test.yml' | ||
- 'src/**' | ||
- 'tests/**' | ||
- 'Makefile' | ||
- 'requirements.test.txt' | ||
pull_request: | ||
branches: [ "master", "release"] | ||
paths: | ||
- '.github/workflows/test.yml' | ||
- 'src/**' | ||
- 'tests/**' | ||
- 'Makefile' | ||
- 'requirements.test.txt' | ||
schedule: | ||
- cron: "5 0 * * 1" | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
env: | ||
RUCAPTCHA_KEY: ${{ secrets.RUCAPTCHA_KEY }} | ||
DEATHBYCAPTCHA_KEY: ${{ secrets.DEATHBYCAPTCHA_KEY }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.11"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
pip install --upgrade pip | ||
pip install -r requirements.test.txt | ||
- name: Test | ||
run: make tests | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ${{github.workspace}}/coverage/coverage.xml | ||
fail_ci_if_error: true | ||
verbose: true | ||
- name: Upload coverage to Code Climate | ||
uses: paambaati/[email protected] | ||
env: | ||
CC_TEST_REPORTER_ID: ${{CODE_CLIMATE_COVERAGE_ID}} | ||
Check failure on line 60 in .github/workflows/test.yml GitHub Actions / TestsInvalid workflow file
|
||
with: | ||
coverageLocations: ${{github.workspace}}/coverage/coverage.xml:coverage.py |