chore(deps): bump github.com/hatchet-dev/hatchet from 0.44.2 to 0.44.4 #129
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
name: test | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Compose | |
run: docker compose up -d | |
- name: Wait for Hatchet | |
run: sleep 10 | |
- name: Test | |
run: | | |
set -eux | |
export HATCHET_CLIENT_TOKEN="$(docker compose run --no-deps setup-config /hatchet/hatchet-admin token create --config /hatchet/config --tenant-id 707d0855-80ab-4e1f-a156-f1c4546cbf52 | xargs)" | |
go test ./... -v -failfast | |
- name: Teardown | |
run: docker compose down | |
- name: Logs | |
if: always() | |
run: docker compose logs |