fix(authz_server): data in input follow the application/x-www-form-urlencoded format #316
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
merge_group: | |
jobs: | |
api_test: | |
runs-on: ubuntu-latest | |
name: 🧪 VCI API Tests | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make test | |
publish_docker_image: | |
needs: api_test | |
name: 🐳 Publish Docker Image | |
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' | |
uses: interfacerproject/workflows/.github/workflows/publish-ghcr.yml@main | |
secrets: inherit |