Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor GitHub Actions #2808

Merged
merged 20 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 11 additions & 17 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,23 @@ on:
- main
- current-release
- "*LTS"

jobs:
test:
runs-on: ${{ matrix.os }}
coverage:
name: Check coverage
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
os: [ubuntu-latest]
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies 🔨
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run coverage
run: tox -e coverage
continue-on-error: true
- uses: codecov/codecov-action@v2
uses: sanic-org/simple-tox-action@v1
with:
python-version: "3.11"
tox-env: coverage
ignore-errors: true
- name: Run Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
fail_ci_if_error: false
39 changes: 0 additions & 39 deletions .github/workflows/on-demand.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/pr-bandit.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/pr-docs.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/pr-linter.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/pr-python-pypy.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/pr-python310.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/pr-python311.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/pr-python38.yml

This file was deleted.

Loading