Skip to content

fix: workflow conf

fix: workflow conf #6

Workflow file for this run

name: Server Tests (Go)
on:
push:
branches:
- main
- fix-ci
workflow_dispatch:
pull_request_target:
branches:
- main
paths:
- 'usage-based-subscriptions/server/go/**'
- 'fixed-price-subscriptions/server/go/**'
- '!**.md'
jobs:
server_test:
strategy:
fail-fast: false
matrix:
runtime:
- server_type: go
server_image: golang:latest
- server_type: go
server_image: golang:1.17
uses: ./.github/workflows/server_test.yaml
secrets: inherit
with:
server_type: ${{ matrix.runtime.server_type }}
server_image: ${{ matrix.runtime.server_image }}
dependabot-auto-merge:
if: ${{ github.event.pull_request && github.actor == 'dependabot[bot]' }}
needs: server_test
permissions:
contents: write
pull-requests: write
uses: ./.github/workflows/dependabot.yaml
secrets: inherit