Skip to content

Run

Run #27

Workflow file for this run

name: Run
on:
schedule:
- cron: "0 */6 * * *"
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout Dist
uses: actions/checkout@v2
with:
path: dist
ref: dist
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
key: run
- name: Compile
uses: actions-rs/cargo@v1
with:
command: run
args: --release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}