Skip to content

Fix CI failures

Fix CI failures #20

Workflow file for this run

jobs:
pull_request:
uses: Nullus157/.github/.github/workflows/pull_request.yml@main
with:
fmt-toolchain: nightly
success:
runs-on: ubuntu-latest
needs: [pull_request]
if: ${{ always() }}
steps:
- if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
- if: ${{ contains(needs.*.result, 'cancelled') }}
run: exit 1
- if: ${{ contains(needs.*.result, 'skipped') }}
run: exit 1
on:
pull_request:
branches: [main]