1
0
Fork 0
mirror of https://github.com/rust-unofficial/awesome-rust.git synced 2024-11-13 11:34:18 -05:00
rust/.github/workflows/rust.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2021-01-31 07:46:10 -05:00
name: Rust
on:
push:
2021-08-08 14:52:32 -04:00
branches:
- master
2021-01-31 07:46:10 -05:00
pull_request:
2021-08-08 14:52:32 -04:00
branches:
- master
schedule:
2021-08-08 14:52:32 -04:00
- cron: 0 0 * * *
2021-01-31 07:46:10 -05:00
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-08-08 14:52:32 -04:00
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- name: Get random cache id
run: echo "CACHE_ID=$((RANDOM))" >> $GITHUB_ENV
shell: bash
- uses: pat-s/always-upload-cache@v2.1.5
with:
path: results/results.yaml
key: results-${{ hashFiles(''Cargo.lock'') }}-${{ hashFiles(''README.md'') }}-${{ env.CACHE_ID }}
restore-keys: |
results-${{ hashFiles('Cargo.lock') }}-${{ hashFiles('README.md') }}-
results-${{ hashFiles('Cargo.lock') }}-
results-
- name: Build
run: cargo build
- name: Run
run: cargo run
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUST_LOG: warn