30 lines
595 B
YAML
30 lines
595 B
YAML
name: Test action
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
|
|
jobs:
|
|
test:
|
|
name: Test on ${{ matrix.image }}
|
|
runs-on: stackit-docker
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
image:
|
|
- registry.onstackit.cloud/devex-images/ubuntu:act-latest
|
|
- registry.onstackit.cloud/devex-images/alpine:latest
|
|
container:
|
|
image: ${{ matrix.image }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Test action
|
|
uses: ./
|
|
with:
|
|
version: "v0.61.0"
|