Files
spark-boilerplate/.gitea/workflows/init.yaml
karthik 99bd6d15ad
All checks were successful
Init / execute-tests (push) Successful in 3s
Add gitea workflow dependencies
2023-10-28 11:23:31 +02:00

18 lines
757 B
YAML

name: Init
on: [push]
jobs:
execute-tests:
runs-on: ubuntu-latest
steps:
- name: Reset test status
run: |
curl -v -X POST https://barrelsofdata.com/api/v1/git/action/status/publish \
-H 'X-API-KEY: ${{ secrets.STATUS_PUBLISH_API_KEY }}' \
-H 'Content-Type: application/json' \
-d '{"action":"${{ gitea.repository }}/action/Tests","status":"starting"}'
- name: Reset build status
run: |
curl -v -X POST https://barrelsofdata.com/api/v1/git/action/status/publish \
-H 'X-API-KEY: ${{ secrets.STATUS_PUBLISH_API_KEY }}' \
-H 'Content-Type: application/json' \
-d '{"action":"${{ gitea.repository }}/action/Build","status":"waiting for test"}'