atuin/.github/workflows/rust.yml

152 lines
3.3 KiB
YAML
Raw Normal View History

2021-02-14 16:39:51 +01:00
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
2021-02-14 16:51:14 +01:00
runs-on: ubuntu-latest
steps:
2023-03-28 22:44:23 +02:00
- uses: actions/checkout@v3
- name: Install rust
2023-03-28 22:44:23 +02:00
uses: dtolnay/rust-toolchain@master
2021-02-14 16:51:14 +01:00
with:
toolchain: stable
2021-02-14 16:39:51 +01:00
2023-03-28 22:44:23 +02:00
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
2021-05-10 23:25:42 +02:00
- name: Run cargo build common
run: cargo build -p atuin-common --locked --release
2021-05-10 23:25:42 +02:00
- name: Run cargo build client
run: cargo build -p atuin-client --locked --release
2021-05-10 23:25:42 +02:00
- name: Run cargo build server
run: cargo build -p atuin-server --locked --release
2021-05-10 23:25:42 +02:00
- name: Run cargo build main
run: cargo build --all --locked --release && strip target/release/atuin
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
# - uses: actions/cache@v3
# with:
# path: |
# ~/.cargo/registry
# ~/.cargo/git
# target
# key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo test
run: cargo test --lib --bins
- 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
- name: Run cargo check (client only)
run: cargo check --no-default-features --features client --workspace
integration-test:
2021-02-14 16:39:51 +01:00
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: atuin
POSTGRES_PASSWORD: pass
POSTGRES_DB: atuin
ports:
- 5432:5432
2021-02-14 16:39:51 +01:00
steps:
2023-03-28 22:44:23 +02:00
- uses: actions/checkout@v3
2021-02-14 16:51:14 +01:00
- name: Install rust
2023-03-28 22:44:23 +02:00
uses: dtolnay/rust-toolchain@master
2021-02-14 16:51:14 +01:00
with:
toolchain: stable
2021-02-14 16:51:14 +01:00
2023-03-28 22:44:23 +02:00
- uses: actions/cache@v3
with:
path: |
2023-03-28 22:44:23 +02:00
~/.cargo/registry
~/.cargo/git
target
2023-03-28 22:44:23 +02:00
key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
2021-02-14 16:51:14 +01:00
- name: Run cargo test
run: cargo test --test '*'
env:
ATUIN_DB_URI: postgres://atuin:pass@localhost:5432/atuin
2021-02-14 16:51:14 +01:00
clippy:
runs-on: ubuntu-latest
steps:
2023-03-28 22:44:23 +02:00
- uses: actions/checkout@v3
2021-02-14 16:51:14 +01:00
- name: Install latest rust
2023-03-28 22:44:23 +02:00
uses: dtolnay/rust-toolchain@master
2021-02-14 16:51:14 +01:00
with:
toolchain: stable
2021-02-14 16:56:49 +01:00
components: clippy
2021-02-14 16:51:14 +01:00
2023-03-28 22:44:23 +02:00
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
2021-02-14 16:55:30 +01:00
- name: Run clippy
2021-02-14 19:16:53 +01:00
run: cargo clippy -- -D warnings
2021-02-14 16:55:30 +01:00
format:
runs-on: ubuntu-latest
steps:
2023-03-28 22:44:23 +02:00
- uses: actions/checkout@v3
2021-02-14 16:55:30 +01:00
- name: Install latest rust
2023-03-28 22:44:23 +02:00
uses: dtolnay/rust-toolchain@master
2021-02-14 16:55:30 +01:00
with:
toolchain: stable
2021-02-14 16:55:30 +01:00
components: rustfmt
2021-02-14 16:55:30 +01:00
- name: Format
run: cargo fmt -- --check