lune-packaging/.github/workflows/ci.yaml

35 lines
596 B
YAML
Raw Normal View History

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