From 59b8eacf70691efd8e972beeb63784ead48fb524 Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Tue, 16 Jul 2024 00:41:54 -0700 Subject: [PATCH] Add test.yml --- .github/workflows/test.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..54b201622 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,38 @@ +name: test + +on: [workflow_dispatch] + +jobs: + ubuntu_install: + name: Test installation on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: ["ubuntu-20.04", "ubuntu-22.04"] + steps: + - uses: actions/checkout@v4 + - name: check + run: | + pwd + ls + cd cvw + ls + rhel_family_install: + name: Test installation on ${{ matrix.os }} + runs-on: ubuntu-latest + container: + image: ${{ matrix.os }} + options: --privileged --mount type=bind,source=/,target=/host + strategy: + fail-fast: false + matrix: + os: ["rockylinux:8", "almalinux:8"] + steps: + - uses: actions/checkout@v4 + - name: check + run: | + pwd + ls + cd cvw + ls