diff options
| author | Christian Cunningham <cc@local.lan> | 2026-03-01 00:14:18 -0800 |
|---|---|---|
| committer | Christian Cunningham <cc@local.lan> | 2026-03-01 00:14:18 -0800 |
| commit | 10c5f151d45afce9c72024cec8c4ae8116c57ce1 (patch) | |
| tree | 3fe577c9b39a5c875ccc59ae97e5b6c06ebb575e /.gitea | |
| parent | c4abc6fd218963eb1862181e1e70aedad4aef52e (diff) | |
Diffstat (limited to '.gitea')
| -rw-r--r-- | .gitea/workflows/make_test.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitea/workflows/make_test.yaml b/.gitea/workflows/make_test.yaml new file mode 100644 index 0000000..e99c838 --- /dev/null +++ b/.gitea/workflows/make_test.yaml @@ -0,0 +1,20 @@ +name: Gitea Test Action +run-name: 🧪 Running Tests +on: + push: + branches: + - master + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-base + container: + image: custom-runner:latest + steps: + - uses: actions/checkout@v4 + - name: Download Packages + run: | + apt install libpng-dev libtiff-dev build-essential pkgconf + - name: Run tests + run: | + make test |
