This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
Deprecate the action #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: [master, main] | |
tags-ignore: ['**'] | |
paths-ignore: ['**.md'] | |
pull_request: | |
paths-ignore: ['**.md'] | |
jobs: | |
gitleaks: | |
name: Gitleaks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: {fetch-depth: 0} | |
- name: Check for GitLeaks | |
uses: gacts/gitleaks@v1 # Action page: <https://github.com/gacts/gitleaks> | |
run-this-action: | |
name: 'Run action (${{ matrix.kind }}, qemu: ${{ matrix.qemu }})' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
kind: [testing, unstable] | |
qemu: [true, false] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: podman version | |
- name: Run this action | |
uses: ./ | |
with: | |
kind: ${{ matrix.kind }} | |
qemu: ${{ matrix.qemu }} | |
- run: podman version | |
- run: podman run hello-world |