Skip to content

feat: Justfile + Github Actions #1

feat: Justfile + Github Actions

feat: Justfile + Github Actions #1

Workflow file for this run

name: Rust CI
on:
push:
branches: [main]
merge_group:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
cargo-tests:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- uses: taiki-e/install-action@nextest
- name: cargo nextest
run: cargo nextest run --release --workspace --all --locked
run: just test

Check failure on line 25 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Rust CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 25, Col: 9): 'run' is already defined
cargo-lint:
runs-on: ubuntu-latest
timeout-minutes: 20
name: lint
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Log into ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: fmt + lint
run: just lint
- name: chown target
run: sudo chown -R $(id -u):$(id -g) ./target
cargo-build-benches:
runs-on: ubuntu-latest
timeout-minutes: 20
name: build-benchmarks
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: build benches
run: cargo bench --no-run --workspace --all
- name: chown target
run: sudo chown -R $(id -u):$(id -g) ./target
cargo-build:
runs-on: ubuntu-latest
timeout-minutes: 20
name: build
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Log into ghcr
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build
run: just build
- name: chown target
run: sudo chown -R $(id -u):$(id -g) ./target
cargo-doc:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: doclint
run: just lint-docs
- name: doctest
run: just test-docs