Skip to content

scale up

scale up #23

Workflow file for this run

on:
workflow_dispatch:
push:
branches: main
name: Regression Testing
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:

Check failure on line 13 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- name: Check out repository
uses: actions/checkout@v4
- name: Install Singularity
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"