31 lines
804 B
YAML
31 lines
804 B
YAML
name: Build'n check
|
|
run-name: Performing Typst compilation
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
run-ci-linux:
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
contains(github.event.head_commit.message, 'Run-Checks') ||
|
|
github.event_name == 'pull_request'
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Install dependencies for Nix setup action
|
|
run: |
|
|
apt update -y
|
|
apt install sudo -y
|
|
- name: Setup Nix
|
|
uses: cachix/install-nix-action@v27
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- name: Stylecheck
|
|
run: nix-shell --run "./run-fmt.sh --check src/lib.typ"
|
|
- id: build
|
|
name: Build
|
|
run: |
|
|
nix-shell --run ./run-ci.sh
|