microfetch/.github/workflows/rust.yml

22 lines
298 B
YAML
Raw Normal View History

2024-08-03 16:07:40 +00:00
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Build with Cargo"
run: cargo build --verbose