All checks were successful
CI / check (push) Successful in 7m29s
Gitea Actions defaults to GitHub for short-form action references. Use full URL to reference actions from the same Gitea instance.
19 lines
300 B
YAML
19 lines
300 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: https://git.johnogle.info/johno/gitea-actions/nix-setup@main
|
|
|
|
- name: Check flake
|
|
run: nix flake check
|