Skip to content

Commit

Permalink
Reduced number of CI jobs and review changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jatkinson1000 authored and raehik committed Feb 21, 2023
1 parent ac8c10a commit c88af0f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,24 @@ jobs:

# Run the black code checker
black:
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
- uses: actions/checkout@v3
- uses: psf/black@stable

build:
# Build with multiple (recent) versions of python on latest OSs
name: Build (${{ matrix.python-version }} | ${{ matrix.os }})
if: always()
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10"]
include:
- os: ubuntu-latest
python-version: "3.9"
- os: ubuntu-latest
python-version: "3.8"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit c88af0f

Please sign in to comment.