Skip to content

Commit

Permalink
Compile check for PRs (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjndw authored May 15, 2024
1 parent b45cf1e commit 792fb8a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release-thesis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: '0'

Expand All @@ -33,7 +33,7 @@ jobs:

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.bump.outputs.new_tag }}
name: Version ${{ steps.bump.outputs.new_tag }}
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/build-typst.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build typst
on:
pull_request:
branches:
- main

jobs:
build_release_thesis:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Compile Typst
uses: lvignoli/typst-action@main
with:
source_file: |
thesis.typ
proposal.typ

0 comments on commit 792fb8a

Please sign in to comment.