Skip to content

Commit

Permalink
Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Napsty committed Jan 15, 2024
1 parent 5fefb95 commit 70f7319
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/rockylinux9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# @file rockylinux9.yml
---
name: Tests on Rocky Linux

# Trigger the workflow on push or pull request
on: [push, pull_request]

jobs:
help:
name: Launch plugin with --help
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:9
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
dnf -y install perl-FindBin
- name: Launch plugin with --help
run: |
./check_ro_mounts.pl --help
execute:
runs-on: ubuntu-latest
container:
image: rockylinux/rockylinux:9
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
dnf -y install perl-FindBin
- name: Launch plugin
run: |
./check_ro_mounts.pl -d

0 comments on commit 70f7319

Please sign in to comment.