Skip to content

ci: update job name and no fail fast #2

ci: update job name and no fail fast

ci: update job name and no fail fast #2

Workflow file for this run

name: build CI
on:
push:
pull_request:
branches: [master]
jobs:
build:
name: Build on ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make dist
run: make dist