2024-07-19 07:23:39 +00:00
|
|
|
name: GitHub Action for checking typst compilation
|
|
|
|
run-name: Performing Typst compilation
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-ci-linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
2024-08-27 19:20:17 +00:00
|
|
|
- name: Setup Nix
|
|
|
|
uses: cachix/install-nix-action@v27
|
2024-07-19 07:36:48 +00:00
|
|
|
with:
|
2024-08-27 19:20:17 +00:00
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2024-07-19 07:23:39 +00:00
|
|
|
- name: Run CI
|
2024-08-27 19:20:17 +00:00
|
|
|
run: nix-shell --run ./run-ci.sh
|