Skip to content

nightly-scheduled-test #845

nightly-scheduled-test

nightly-scheduled-test #845

---
name: nightly-scheduled-test
on:
schedule:
# * is a special character in YAML so you have to quote this string
# runs every day at midnight
- cron: '0 0 * * *'
jobs:
nightly-make-test:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [22.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rustfmt, clippy
# Needed for gcc install
- run: sudo apt update && sudo apt install -y build-essential wabt
- run: make prepare
- run: make check-lint
- run: make test
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run cargo audit
run: cargo audit
# - name: Slack Notification
# uses: ravsamhq/notify-slack-action@v1
# if: always()
# with:
# status: ${{ job.status }}
# notification_title: '*{repo}*'
# message_format: '{emoji} *{workflow}* *{status_message}* in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>'
# footer: '<{run_url}|View Run>'
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# - name: Fake Commit after 50 days
# uses: gautamkrishnar/keepalive-workflow@790c7f09285a59b09bb578c85e271c6ff2af97c4 #v1.1.0