mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-04 10:06:13 +02:00
14 lines
326 B
YAML
14 lines
326 B
YAML
name: Run checks on code
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
check:
|
|
name: Check that the module is valid
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v19
|
|
with:
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- run: nix flake check
|