mirror of
https://github.com/NotAShelf/microfetch.git
synced 2024-11-01 14:51:14 +00:00
CI: build with Cargo
This commit is contained in:
parent
6a77ad0682
commit
5ed144719c
1 changed files with 21 additions and 0 deletions
21
.github/workflows/rust.yml
vendored
Normal file
21
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
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
|
Loading…
Reference in a new issue