mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
Add test.yml
This commit is contained in:
parent
d7af9bbccb
commit
59b8eacf70
38
.github/workflows/test.yml
vendored
Normal file
38
.github/workflows/test.yml
vendored
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user