Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Initial ci.yml (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
KendallWeihe committed Apr 29, 2024
1 parent c50d47f commit 71d616a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
branches:
- main
- kendall/github-ci # TODO remove!
pull_request:
branches:
- '*'

env:
CARGO_TERM_COLOR: always
# Make sure CI fails on all warnings, including Clippy lints
RUSTFLAGS: "-Dwarnings"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Init Hermit
uses: cashapp/activate-hermit@v1
with:
cache: true
- name: Build
run: just build

# test:
# # ...
# lint:
# # ...

0 comments on commit 71d616a

Please sign in to comment.