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
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- "opened"
|
|
|
|
- "edited"
|
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
|
2023-02-23 20:05:25 +00:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2023-01-19 01:47:14 +00:00
|
|
|
with:
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
2023-03-22 13:12:05 +00:00
|
|
|
- name: Install project tools
|
|
|
|
uses: ok-nick/setup-aftman@v0.3.0
|
|
|
|
|
2023-01-19 01:47:14 +00:00
|
|
|
- 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-01-21 05:04:38 +00:00
|
|
|
- name: Test - Lune
|
2023-03-22 13:12:05 +00:00
|
|
|
run: just test
|
2023-03-10 10:39:54 +00:00
|
|
|
|
2023-01-21 05:04:38 +00:00
|
|
|
- name: Test - CLI
|
2023-03-22 13:12:05 +00:00
|
|
|
run: just test-cli
|