mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-12 08:28:32 +02:00
26 lines
466 B
YAML
26 lines
466 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: [self-hosted, ubuntu]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: nightly-rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: nightly
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run clippy
|
|
run: cargo clippy --fix
|