test
Some checks failed
Deployment Verification Debian / Run Hardening on Debian (push) Successful in 2m2s
Deployment Verification Ubuntu / Run Hardening on Ubuntu (push) Failing after 6s

This commit is contained in:
Hubert Cornet 2025-04-27 15:22:44 +02:00
parent d5caebb742
commit 6ca7ff7a72
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#
name: Deployment Verification Debian
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy-and-test:
name: Run Hardening on Debian
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Make the script files executable
run: chmod +x * -R
- name: Run a script
run: sudo ./main.sh

View File

@ -11,7 +11,9 @@ on:
jobs: jobs:
deploy-and-test: deploy-and-test:
name: Run Hardening on Ubuntu
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: amd64/debian:12
steps: steps:
- name: Checkout - name: Checkout