Skip to content

Commit

Permalink
fix: remove renamed workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Dec 31, 2024
1 parent e4e7816 commit 172f492
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 93 deletions.
77 changes: 0 additions & 77 deletions .github/workflows/CI.yml

This file was deleted.

34 changes: 18 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ concurrency:

jobs:
typos:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Spelling (typos)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master

reuse:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Licensing (REUSE)
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -57,19 +59,19 @@ jobs:
make build
make test
pytest:
name: Test (pytest-${{ matrix.os }}-${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
make pip-install
make pytest
# pytest:
# name: Test (pytest-${{ matrix.os }}-${{ matrix.python-version }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
# python-version: ['3.10']
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Run tests
# run: |
# make pip-install
# make pytest

0 comments on commit 172f492

Please sign in to comment.