gt/.github/workflows/rust.yml

24 lines
399 B
YAML
Raw Normal View History

2023-09-04 15:25:51 -05:00
name: Rust
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
2023-09-28 17:27:53 -05:00
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable # You can change this to nightly or other versions
- name: Build with Cargo
run: |
cargo build --release