Files
torana/.github/workflows/main.yml
Amneesh Singh a0c99c2a70 add GitHub CI
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-21 15:43:26 +05:30

29 lines
774 B
YAML

name: torana
on: [push, pull_request, workflow_dispatch]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Install nix
uses: cachix/install-nix-action@v18
- name: Check formatting
run: nix develop -c cargo fmt --check
- name: Set up cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ matrix.os }}-torana-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: nix develop -c cargo build --release