Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Deprecate the action #21

Deprecate the action

Deprecate the action #21

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: 🧪 Tests
on:
push:
branches: [master, main]
tags-ignore: ['**']
paths-ignore: ['**.md']
pull_request:
paths-ignore: ['**.md']
jobs:
gitleaks:
name: Check for GitLeaks
runs-on: ubuntu-latest
steps:
- {uses: actions/checkout@v4, with: {fetch-depth: 0}}
- uses: gacts/gitleaks@v1
run-this-action:
name: Run action (${{ matrix.runs-on }}, Go ${{ matrix.go-version }})
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, windows-latest] # macos-latest
go-version: [1.19, 1.22]
steps:
- uses: actions/checkout@v4
- name: Run this action
uses: ./
with: {go-version: '${{ matrix.go-version }}'}