feat: initial
This commit is contained in:
commit
f1cd1be14d
8 changed files with 444 additions and 0 deletions
30
.forgejo/workflows/test.yaml
Normal file
30
.forgejo/workflows/test.yaml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue