mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
16 lines
391 B
YAML
16 lines
391 B
YAML
|
name: facebookexperimental/object-introspection
|
||
|
on:
|
||
|
pull_request:
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4.1.0
|
||
|
- uses: cachix/install-nix-action@v25
|
||
|
with:
|
||
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
- name: nix fmt
|
||
|
run: |-
|
||
|
nix --experimental-features 'nix-command flakes' fmt
|
||
|
git diff --exit-code
|