2021-01-31 12:46:10 +00:00
|
|
|
name: Rust
|
|
|
|
on:
|
|
|
|
push:
|
2021-08-08 18:52:32 +00:00
|
|
|
branches:
|
2022-06-11 09:17:08 +00:00
|
|
|
- main
|
2021-01-31 12:46:10 +00:00
|
|
|
pull_request:
|
2021-08-08 18:52:32 +00:00
|
|
|
branches:
|
2022-06-11 09:17:08 +00:00
|
|
|
- main
|
2021-06-13 14:51:37 +00:00
|
|
|
schedule:
|
2021-08-08 18:52:32 +00:00
|
|
|
- cron: 0 0 * * *
|
2021-01-31 12:46:10 +00:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-11-06 18:29:11 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: dtolnay/rust-toolchain@master
|
2021-08-08 18:52:32 +00:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
2021-10-16 20:56:51 +00:00
|
|
|
components: rustfmt
|
2022-11-06 18:29:11 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2021-08-08 18:52:32 +00:00
|
|
|
- name: Get random cache id
|
|
|
|
run: echo "CACHE_ID=$((RANDOM))" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
2022-06-13 08:38:37 +00:00
|
|
|
- uses: pat-s/always-upload-cache@v3.0.1
|
2021-08-08 18:52:32 +00:00
|
|
|
with:
|
2021-08-10 22:55:13 +00:00
|
|
|
path: results/*.yaml
|
2021-08-08 19:06:14 +00:00
|
|
|
key: results-${{ hashFiles('Cargo.lock') }}-${{ hashFiles('README.md') }}-${{ env.CACHE_ID }}
|
2021-08-08 18:52:32 +00:00
|
|
|
restore-keys: |
|
|
|
|
results-${{ hashFiles('Cargo.lock') }}-${{ hashFiles('README.md') }}-
|
|
|
|
results-${{ hashFiles('Cargo.lock') }}-
|
|
|
|
results-
|
2021-10-16 20:56:51 +00:00
|
|
|
- name: Check Format
|
|
|
|
run: cargo fmt -- --check
|
2021-08-08 18:52:32 +00:00
|
|
|
- name: Build
|
|
|
|
run: cargo build
|
2022-06-11 09:33:22 +00:00
|
|
|
- name: Run
|
|
|
|
run: cargo run
|
|
|
|
env:
|
2022-06-11 09:40:33 +00:00
|
|
|
USERNAME_FOR_GITHUB: ${{ secrets.USERNAME_FOR_GITHUB }}
|
|
|
|
TOKEN_FOR_GITHUB: ${{ secrets.TOKEN_FOR_GITHUB }}
|
2022-06-11 09:33:22 +00:00
|
|
|
RUST_LOG: warn
|