atuin/.github/workflows/rust.yml

119 lines
2.6 KiB
YAML
Raw Normal View History

2021-02-14 08:39:51 -07:00
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
2021-02-14 08:51:14 -07:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install rust
2021-02-14 08:51:14 -07:00
uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-02-14 08:51:14 -07:00
override: true
2021-02-14 08:39:51 -07:00
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
2021-05-10 15:25:42 -06:00
- name: Run cargo build common
run: cargo build -p atuin-common --locked --release
2021-05-10 15:25:42 -06:00
- name: Run cargo build client
run: cargo build -p atuin-client --locked --release
2021-05-10 15:25:42 -06:00
- name: Run cargo build server
run: cargo build -p atuin-server --locked --release
2021-05-10 15:25:42 -06:00
- name: Run cargo build main
run: cargo build --all --locked --release && strip target/release/atuin
2021-02-14 08:51:14 -07:00
test:
2021-02-14 08:39:51 -07:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-02-14 08:51:14 -07:00
- name: Install rust
2021-02-14 08:51:14 -07:00
uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-02-14 08:51:14 -07:00
override: true
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
2021-02-14 08:51:14 -07:00
- name: Run cargo test
run: cargo test --all-features --workspace
- name: Run cargo check (all features)
run: cargo check --all-features --workspace
- name: Run cargo check (no features)
run: cargo check --no-default-features --workspace
- name: Run cargo check (sync)
run: cargo check --no-default-features --features sync --workspace
- name: Run cargo check (server)
run: cargo check --no-default-features --features server --workspace
2021-02-14 08:51:14 -07:00
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest rust
2021-02-14 08:51:14 -07:00
uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-02-14 08:51:14 -07:00
override: true
2021-02-14 08:56:49 -07:00
components: clippy
2021-02-14 08:51:14 -07:00
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
2021-02-14 08:55:30 -07:00
- name: Run clippy
2021-02-14 11:16:53 -07:00
run: cargo clippy -- -D warnings
2021-02-14 08:55:30 -07:00
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest rust
2021-02-14 08:55:30 -07:00
uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-02-14 08:55:30 -07:00
override: true
components: rustfmt
2021-02-14 08:55:30 -07:00
- name: Format
run: cargo fmt -- --check