chore: add get res_name && resource_type function, and append home dir path in log dir #291
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
# Availability-related actions. | |
name: Platforms | |
on: | |
push: | |
paths: | |
- "**.rs" | |
- "**.yaml" | |
- "**.yml" | |
- "**.toml" | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 0" # Sunday | |
jobs: | |
# Depends on all actions that are required for a "successful" CI run. | |
paltforms: | |
name: Platforms | |
strategy: | |
matrix: | |
include: | |
- os: windows-latest | |
RUSTC_TARGET: x86_64-pc-windows-msvc | |
- os: macos-latest | |
RUSTC_TARGET: x86_64-apple-darwin | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-ci-${{ hashFiles('**/Cargo.lock') }} | |
- name: Check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --target=${{ matrix.RUSTC_TARGET }} | |
- name: Unit Tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --target=${{ matrix.RUSTC_TARGET }} -- --nocapture | |
- name: Ignored Unit Tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --target=${{ matrix.RUSTC_TARGET }} -- --ignored --test-threads=1 --nocapture | |
wasm: | |
name: WebAssembly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
- uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-wasm-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --target=wasm32-unknown-unknown |