Skip to content

chore(release): 0.4.3 #285

chore(release): 0.4.3

chore(release): 0.4.3 #285

Workflow file for this run

name: Code Coverage
on:
push:
branches:
- "main"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
env:
OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set timezone
uses: szenius/set-timezone@1f9716b0f7120e344f0c62bb7b1ee98819aefd42
with:
timezoneLinux: "Asia/Shanghai"
timezoneMacos: "Asia/Shanghai"
timezoneWindows: "China Standard Time"
- name: Setup rye
uses: eifinger/setup-rye@77afcf35e64d9b0e210a77e85176c9165a9bf668
with:
enable-cache: true
cache-prefix: ${{ env.PYTHON_VERSION }}
- name: Install prerequisites
run: |
rye pin ${{ env.PYTHON_VERSION }}
rye sync
- name: Run tests
run: rye run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,PYTHON_VERSION
check:
if: always()
needs: test
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe
with:
jobs: ${{ toJSON(needs) }}