lune/.github/workflows/ci.yaml

35 lines
596 B
YAML
Raw Normal View History

2023-01-19 01:55:27 +00:00
name: CI
2023-01-19 01:47:14 +00:00
on:
push:
2023-05-19 16:03:29 +01:00
pull_request:
workflow_dispatch:
2023-01-19 01:47:14 +00:00
jobs:
2023-01-19 01:55:27 +00:00
ci:
name: CI
2023-01-19 01:47:14 +00:00
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
2023-03-22 13:23:08 +00:00
with:
submodules: true
2023-01-19 01:47:14 +00:00
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
2023-01-19 01:47:14 +00:00
with:
components: rustfmt, clippy
- name: Rustfmt
run: cargo fmt -- --check
2023-01-19 01:55:27 +00:00
- name: Build
2023-02-06 00:13:58 +00:00
run: cargo build --locked
2023-01-19 01:55:27 +00:00
2023-01-19 01:47:14 +00:00
- name: Clippy
run: cargo clippy
2023-01-19 01:55:27 +00:00
2023-06-28 11:11:06 +01:00
- name: Test
2023-07-07 08:11:27 +01:00
run: cargo test --package lune -- --test-threads 1