2024-07-01 14:17:54 +00:00
|
|
|
name: Gitea Action for checking typst compilation
|
2024-07-01 17:14:48 +00:00
|
|
|
run-name: Performing Typst compilation
|
2024-07-01 14:17:54 +00:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-07-01 17:14:48 +00:00
|
|
|
run-ci-linux:
|
2024-07-01 14:17:54 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-07-01 17:14:48 +00:00
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
2024-07-08 20:58:13 +00:00
|
|
|
- name: Setup Nix
|
|
|
|
uses: cachix/install-nix-action@v18
|
2024-07-08 20:56:56 +00:00
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
2024-07-01 17:14:48 +00:00
|
|
|
- name: Run CI
|
2024-07-08 20:56:56 +00:00
|
|
|
run: nix-shell --run ./run-ci.sh
|