diff options
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 |
