Bump time from 0.3.23 to 0.3.24 #842
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
ASSET_DIR: ./app/build | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
cache: "npm" | |
cache-dependency-path: ./app/package-lock.json | |
- run: npm ci && npm run build | |
working-directory: ./app | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: llvm-tools-preview, rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install latest nextest release | |
uses: taiki-e/install-action@nextest | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Collect coverage data | |
run: cargo llvm-cov nextest --lcov --output-path lcov.info --workspace | |
- name: Upload coverage data to coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
file: ./lcov.info | |
continue-on-error: true | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: check --features api-mocks | |
run: cargo check --features api-mocks |