This repository contains the standard CI used for TG's Rust projects. The aim is to provide projects with a basic CI without having to spend time engineering it.
See CI Standard for the GitLab version.
To use it, copy .github/workflows/ci.yml into your GitHub project. For some steps you might want to include extra steps, see customising for examples.
The following steps are included in the CI. The steps cache whatever makes sense to cache for Rust projects (see caching for more details).
cargo format
cargo build
cargo clippy
cargo test
cargo deny
cargo outdated
cargo udeps
(nightly)
Caching is stable over multiple jobs using Swatinem/rust-cache on the following directories:
path: |
.cargo/bin/
.cargo/registry/index/
.cargo/registry/cache/
.cargo/git/db/
target
No project is the same, therefore, feel free to customise your setup. Here are some examples:
cargo deny
expects a deny.toml
in order to be able to check which licenses are allowed. Add it using cargo deny init
and configure it as described in the book.
On the GitHub version of TG standard CI, cargo deny
performs all steps (advisories
, bans
, licenses
and sources
), but it is also possible to only perform a subset, for example:
deny:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: cargo
shared-key: build
- uses: tweedegolf/ci-standard/.github/actions/cargo-deny@main
+ with:
+ command: check advisories bans sources
In order to be able to run cargo test
, one might need some extra services. For example, if you need a postgres container, the following might work:
test:
runs-on: ubuntu-latest
needs: build
+ services:
+ postgres:
+ image: postgres
+ env:
+ POSTGRES_PASSWORD: postgres
+ options: >-
+ --health-cmd pg_isready
+ --health-interval 10s
+ --health-timeout 5s
+ --health-retries 5
+ ports:
+ - 5432:5432
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: cargo
shared-key: test
- run: cargo test --all-features --all-targets
Feel free to contribute via a PR if you think we should include more stuff or do things differently.