mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
Add cargo test to github actions
This commit is contained in:
17
.github/workflows/cargo-test.yaml
vendored
Normal file
17
.github/workflows/cargo-test.yaml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Cargo Test
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Run cargo test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
- name: Run cargo test
|
||||
run: cargo test
|
||||
Reference in New Issue
Block a user