Skip to content

feat: Use files within directory #255

feat: Use files within directory

feat: Use files within directory #255

Workflow file for this run

name: Rust
on:
push:
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: [self-hosted, arch]
steps:
- uses: actions/checkout@v3
- name: nightly-rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- name: Cache
uses: actions/cache@v3
with:
path: target/debug
key: ${{ runner.os }}-cache
- name: Build
run: cargo build --verbose
# - name: Run tests
# run: cargo test -- --nocapture