Skip to content

Commit

Permalink
Merge pull request #15 from pytest-dev/ci
Browse files Browse the repository at this point in the history
3.6 and 3.7 eol
  • Loading branch information
wimglenn authored May 2, 2024
2 parents 3be63e6 + a63755e commit a18bef5
Showing 1 changed file with 27 additions and 16 deletions.
43 changes: 27 additions & 16 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,53 @@ name: tests

on:
push:
branches: ["main"]
branches:
- main
pull_request:
branches: ["main"]
branches:
- main
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:

jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-latest, windows-latest]
python-version: ["3.6", "3.11", "3.12-dev"]
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- name: "Install"
run: "python -m pip install coverage ."
- name: "Run tests for ${{ matrix.python-version }} on ${{ matrix.os }}"
run: "coverage run --source=pytest_freezer -m pytest && coverage report -m"
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install coverage .
- name: Run tests for ${{ matrix.python-version }} on ${{ matrix.os }}
run: coverage run --source=pytest_freezer -m pytest && coverage report -m
- name: Upload coverage to Codecov
uses: "codecov/codecov-action@v3"
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

check-package:
name: Build & inspect our package.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: hynek/build-and-inspect-python-package@v1
- uses: actions/checkout@v4
- uses: hynek/build-and-inspect-python-package@v2

0 comments on commit a18bef5

Please sign in to comment.