2021-02-14 15:39:51 +00:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-02-14 15:51:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install rust
|
2021-02-14 15:51:14 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:51:14 +00:00
|
|
|
override: true
|
2021-02-14 15:39:51 +00:00
|
|
|
|
2021-02-14 15:51:14 +00:00
|
|
|
- name: Run cargo build
|
2021-04-26 16:54:53 +01:00
|
|
|
run: cargo build --all --release && strip target/release/atuin
|
2021-04-26 14:25:57 +01:00
|
|
|
|
2021-02-14 15:51:14 +00:00
|
|
|
test:
|
2021-02-14 15:39:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-02-14 15:51:14 +00:00
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install rust
|
2021-02-14 15:51:14 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:51:14 +00:00
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Run cargo test
|
2021-04-25 18:21:52 +01:00
|
|
|
run: cargo test --workspace
|
2021-02-14 15:51:14 +00:00
|
|
|
|
|
|
|
clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install latest rust
|
2021-02-14 15:51:14 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:51:14 +00:00
|
|
|
override: true
|
2021-02-14 15:56:49 +00:00
|
|
|
components: clippy
|
2021-02-14 15:51:14 +00:00
|
|
|
|
2021-02-14 15:55:30 +00:00
|
|
|
- name: Run clippy
|
2021-02-14 18:16:53 +00:00
|
|
|
run: cargo clippy -- -D warnings
|
2021-02-14 15:55:30 +00:00
|
|
|
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-04-20 17:07:11 +01:00
|
|
|
- name: Install latest rust
|
2021-02-14 15:55:30 +00:00
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-04-20 17:07:11 +01:00
|
|
|
toolchain: stable
|
2021-02-14 15:55:30 +00:00
|
|
|
override: true
|
|
|
|
components: rustfmt
|
|
|
|
|
|
|
|
- name: Format
|
|
|
|
run: cargo fmt -- --check
|