Skip to content

ci: standardize workflows using SciML's reusable workflows #120

ci: standardize workflows using SciML's reusable workflows

ci: standardize workflows using SciML's reusable workflows #120

Workflow file for this run

name: "Format Check"
on:
push:
branches:
- 'master'
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
format-check:
name: "Format Check"
uses: "SciML/.github/.github/workflows/format-check.yml@v1"