Archived
1
This repository has been archived on 2025-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
2021-12-17 11:40:29 -05:00

17 lines
351 B
YAML

on: [push, pull_request]
name: Build
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features