Skip to content

rename

rename #14

Workflow file for this run

name: PythonCI
on:
push:
branches:
- main
tags: ['*']
pull_request:
workflow_dispatch:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Rye - ${{ matrix.os }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: sksat/[email protected]
- name: Run rye sync
run: rye sync
- name: Run rye run pytest
run: rye run pytest