mirror of
https://github.com/NotAShelf/microfetch.git
synced 2024-11-23 07:50:42 +00:00
22 lines
298 B
YAML
22 lines
298 B
YAML
|
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
|