From 339237f67b9bdca78a9d5c2df53226161220a0cc Mon Sep 17 00:00:00 2001 From: Andrew Pennebaker Date: Mon, 21 Oct 2024 23:09:29 -0500 Subject: [PATCH] test continual os changes --- .github/workflows/test-futureproof-os.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test-futureproof-os.yml diff --git a/.github/workflows/test-futureproof-os.yml b/.github/workflows/test-futureproof-os.yml new file mode 100644 index 0000000..c5be5d5 --- /dev/null +++ b/.github/workflows/test-futureproof-os.yml @@ -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"