Skip to content

Commit

Permalink
test continual os changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Pennebaker committed Oct 22, 2024
1 parent c86d14f commit 339237f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-futureproof-os.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: "Test-Futureproof-OS"
on: # yamllint disable-line rule:truthy
push:
pull_request:
# POSIX cron format
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html
schedule:
# Once every 5 minutes
# - cron: "*/5 * * * *"
# Once a day
- cron: "0 0 * * *"
jobs:
Test-Futureproof-OS:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- run: "sudo apt-get update"
- run: "sudo apt-get install -y cargo make"
- run: "make"
- run: "tinyrick test"

0 comments on commit 339237f

Please sign in to comment.