setup rust in rust action
Rust / test (push) Successful in 1m49s Details

This commit is contained in:
DataHearth 2023-06-23 16:17:54 +02:00
parent b4e8ad930c
commit f61cd459ed
No known key found for this signature in database
GPG Key ID: E88FD356ACC5F3C4
1 changed files with 7 additions and 4 deletions

View File

@ -12,13 +12,16 @@ env:
CARGO_TERM_COLOR: always
jobs:
test-build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Run tests
- name: Test
run: cargo test --verbose