Files
cocommit/.github/workflows/test_push.yml
T
Slug-Boi 98fce7efe9 Add go.work to gitignore
Add go work init to workflows
2024-05-17 22:01:05 +02:00

23 lines
511 B
YAML

name: Test On Push
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v3
- uses: actions/checkout@v3
- name: Setup Go Workfile
run: go work init ./ci ./src_code/go_src
- name: Get Dagger
run: go get dagger.io/dagger@latest
- name: Run Dagger Test Workflow
run: go run ci/test_on_push.go