35 lines
644 B
YAML
35 lines
644 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
[
|
|
ubuntu-24.04,
|
|
ubuntu-24.04-arm,
|
|
macos-13,
|
|
macos-latest,
|
|
windows-11-arm,
|
|
windows-latest,
|
|
]
|
|
version: ["latest", "3.10.2"]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Setup SOPS
|
|
uses: ./
|
|
with:
|
|
version: ${{ matrix.version }}
|
|
- name: Test SOPS
|
|
run: sops --version
|