All checks were successful
Run tests / run_tests (push) Successful in 33s
31 lines
530 B
YAML
31 lines
530 B
YAML
name: Run tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.forgejo/workflows/**/*'
|
|
- 'flake.nix'
|
|
- 'flake.lock'
|
|
- 'options/**/*'
|
|
- 'modules/**/*'
|
|
- 'lib/**/*'
|
|
- 'tests/**/*'
|
|
|
|
jobs:
|
|
run_tests:
|
|
runs-on: native
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: is formatted question mark
|
|
run: |
|
|
nix fmt -- -c *
|
|
|
|
- name: nix flake check
|
|
run: |
|
|
nix flake check --show-trace --print-build-logs
|