23 lines
392 B
YAML
23 lines
392 B
YAML
name: Rust
|
|
|
|
on: [push]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install
|
|
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
- name: Put Rust in $PATH
|
|
- run: source "$HOME/.cargo/env"
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests
|
|
run: cargo test --verbose
|