feat: add update command which looks at os and tries to update #122
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
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 ./ | |
- name: Get Dagger | |
run: cd ci && go get dagger.io/dagger@latest && cd .. | |
- name: Run Dagger Test Workflow | |
run: go run ci/test_on_push.go |