Skip to content

Commit

Permalink
chore(ci): cleanup workflows and add windows and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
abn committed Nov 12, 2024
1 parent 7e56960 commit 56540c9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 19 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/code-quality.yml

This file was deleted.

13 changes: 11 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@ on:
- '**'

jobs:
pre-commit:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/action@v2.0.0

tests:
name: ${{ matrix.os }} / ${{ matrix.python-version }}
name: Test / ${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ matrix.experimental }}
needs: [pre-commit]
strategy:
matrix:
os: [Ubuntu]
os: [ubuntu, windows, macos]
python-version: ["3.10", "3.11", "3.12", "3.13"]
experimental: [false]
fail-fast: false
Expand Down

0 comments on commit 56540c9

Please sign in to comment.