Skip to content

Instantly share code, notes, and snippets.

@a-bruhn
a-bruhn / .gitlab-ci.yml
Created March 29, 2024 16:14 — forked from LukeMathWalker/.gitlab-ci.yml
GitLab CI - Rust setup
image: "rust:latest"
default:
before_script:
- rustc --version
- cargo --version
stages:
- test
@a-bruhn
a-bruhn / config.yml
Created March 29, 2024 16:13 — forked from LukeMathWalker/config.yml
CircleCI - Rust setup
version: 2
jobs:
build-and-test:
docker:
- image: cimg/rust:1.69
environment:
# Fail the build if there are warnings
RUSTFLAGS: '-D warnings'
steps:
- checkout