21 lines
347 B
YAML
21 lines
347 B
YAML
name: Test some stuff
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .forgejo/workflows/test.yaml
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: nixos-unstable
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: 'main'
|
|
- name: direnv
|
|
run: direnv allow
|
|
- name: treefmt
|
|
run: treefmt
|