mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
558 B
YAML
30 lines
558 B
YAML
name: test-gh-action
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'action/**'
|
|
push:
|
|
paths:
|
|
- 'action/**'
|
|
branches:
|
|
- 'main'
|
|
- 'release/**'
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
actions:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.version }}
|
|
name: action on ${{ matrix.version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: Setup flux
|
|
uses: ./action
|