Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
CubicrootXYZ committed Aug 11, 2024
1 parent 554a7a6 commit 16bb73f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/golang_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,19 @@ on:
type: string
default: '{}'

env:
NEEDS: ${{ github.event.inputs.needs }}

jobs:
test:
needs: ${{ fromJSON(github.event.inputs.needs) }}
needs: ${{ fromJSON($NEEDS) }}
runs-on: ubuntu-latest
if: "!startsWith(github.ref, 'refs/tags/')"
container:
image: golang:1.22.5-alpine3.20
options: --user root
services: ${{ fromJSON(github.event.inputs.services) }}
env: ${{ fromJSON(github.event.inputs.env) }}
services: ${{ fromJSON(inputs.services) }}
env: ${{ fromJSON(inputs.env) }}
steps:
- name: Checkout the repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 16bb73f

Please sign in to comment.