enbas/.forgejo/actions/mage/action.yaml
Dan Anglin 7fd93e8778
Some checks failed
Tests / test (pull_request) Successful in 15s
REUSE Compliance Check / check (push) Failing after 13s
ci: add a workflow for tests
- Added an action for running mage targets
- Added a workflow for running tests
- Add our first unit test

PR: #52
2024-08-17 19:15:12 +01:00

16 lines
273 B
YAML

---
name: "Enbas Mage Action"
description: "Runs a mage target in the Enbas project"
inputs:
target:
description: "The mage target to run"
required: true
runs:
using: "docker"
image: "Dockerfile"
entrypoint: "mage"
args:
- -v
- ${{ inputs.target }}