Skip to content

GitHub Actions: Build and test on macOS with MPI #29

GitHub Actions: Build and test on macOS with MPI

GitHub Actions: Build and test on macOS with MPI #29

Workflow file for this run

---
name: ci
# yamllint disable-line rule:truthy
on:
push:
pull_request:
concurrency:
# yamllint disable-line rule:line-length
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
prechecks:
uses: ./.github/workflows/pre-commit.yml
all-prechecks:
needs: [prechecks]
runs-on: ubuntu-latest
steps:
- name: Success
run: "true"
tests:
needs: [prechecks]
uses: ./.github/workflows/test.yml
all:
needs: [tests]
runs-on: ubuntu-latest
steps:
- name: Success
run: "true"