apheleia/.github/workflows/formatters.yml
Radon Rosborough 53f243b111
Add formatter tests (#72)
Closes #24
Builds on #25 by @PrimaryCanary
2022-01-05 15:35:12 -08:00

23 lines
636 B
YAML

name: Changed formatters
on: [pull_request]
jobs:
formatters:
runs-on: ubuntu-latest
steps:
- name: Checkout pull request
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Fetch master
run: |
git fetch
- name: Test changed formatters
run: |
set -euo pipefail
mkdir -p .tmp
make docker CMD="make fmt-changed > .tmp/changed"
export FORMATTERS="$(< .tmp/changed)"
if [[ -n "${FORMATTERS}" ]]; then
make fmt-build fmt-docker CMD="make fmt-test"
fi