replace tinytex by texlive #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
branches: main | |
name: Regression Testing | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Apptainer | |
run: | | |
sudo apt-get update && \ | |
sudo curl -LO https://github.com/apptainer/apptainer/releases/download/v1.3.5/apptainer_1.3.5_amd64.deb && \ | |
sudo apt install ./apptainer_1.3.5_amd64.deb && sudo rm -rf appt* | |
- name: Build & Check Ubuntu Noble | |
uses: ./.github/actions/singularity | |
with: | |
linux_distro: "noble" | |
- name: Build & Check Ubuntu Jammy | |
uses: ./.github/actions/singularity | |
with: | |
linux_distro: "jammy" | |
- name: Build & Check Ubuntu Focal | |
uses: ./.github/actions/singularity | |
with: | |
linux_distro: "focal" | |
- name: Build & Check Rocky Linux 8 | |
uses: ./.github/actions/singularity | |
with: | |
linux_distro: "rockylinux8" | |
- name: Build & Check Rocky Linux 9 | |
uses: ./.github/actions/singularity | |
with: | |
linux_distro: "rockylinux9" |