Compare commits

...

4 Commits

Author SHA1 Message Date
Sven Vogel 23dd278e8d ci: revert artifact up- and download action to v3
Build'n check / run-ci-linux (push) Has been skipped Details
Build'n check / Check Template and Build example (pull_request) Successful in 2m31s Details
Build'n check / release (pull_request) Has been skipped Details
(cherry picked from commit c819704b49)
2024-11-25 10:42:03 +01:00
Sven Vogel 1031085222 ci: remove run condition for CI on push on main
(cherry picked from commit cc4d217547)
2024-11-25 10:42:03 +01:00
Sven Vogel d6dcb8cc49 style: run formatter
(cherry picked from commit 84af717ce7)
2024-11-25 10:42:03 +01:00
Sven Vogel fd57f39731 ci: add ripgrep to nix shell
(cherry picked from commit c961dacf96)
2024-11-25 10:42:03 +01:00
4 changed files with 46 additions and 46 deletions

View File

@ -2,9 +2,6 @@ name: Build'n check
run-name: Performing Typst compilation
on:
push:
pull_request:
branches:
- main
jobs:
run-ci-linux:
runs-on: ubuntu-latest
@ -12,8 +9,7 @@ jobs:
# push with commit containing "Run-Checks"
if: >
(contains(github.event.head_commit.message, 'Run-Checks') &&
github.event_name == 'push') ||
github.event_name == 'pull_request'
github.event_name == 'push')
steps:
- name: Check out repository code
uses: actions/checkout@v3

View File

@ -28,7 +28,7 @@ jobs:
nix-shell --run ./run-ci.sh
- name: Upload artifact
id: artifact-upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: example-document
path: ${{ github.workspace }}/example.pdf
@ -51,7 +51,7 @@ jobs:
go-version: '>=1.20.1'
- name: Download Artifact
id: download
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: example-document
path: ${{ github.workspace }}/Example.pdf

View File

@ -9,5 +9,6 @@ pkgs.mkShellNoCC {
python312Packages.pyyaml
typst
typstyle
ripgrep
];
}

View File

@ -200,7 +200,9 @@ SOFTWARE.*/
#block(
below: 1.5em,
width: 100%,
par(hanging-indent: 1em, align(left)[
par(
hanging-indent: 1em,
align(left)[
#text(weight: "bold", entry.short)
#if hasLong and hasDesc [
(#text(entry.long))
@ -239,7 +241,8 @@ SOFTWARE.*/
)
.join(", ")
}
]),
],
),
)
]
}