16 lines
No EOL
272 B
YAML
16 lines
No EOL
272 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- trunk
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: update flake
|
|
run: |
|
|
nix flake update --experimental-features 'nix-command flakes'
|
|
|
|
|