Skip to content

fix: rust path

fix: rust path #16

Workflow file for this run

name: Rust
on:
push:
paths-ignore:
- 'docker-compose*'
- '**.md'
- '.**'
- '!.github/**'
pull_request:
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
# For self-hosted runner
- name : Set up Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Build
run: $HOME/.cargo/bin/cargo build --verbose
- name: Run tests
run: $HOME/.cargo/bin/cargo test --verbose