/
githubmirror
/
goose
Обзор
Документация
Войти
/
githubmirror
/
goose
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/integration.yaml
35 строк
863 B
dependabot[bot]
build(deps): bump actions/checkout from 5 to 6 (#1005)
27 ноя 2025, 16:26
Не верифицирован
27 ноя 2025, 16:26
e71b970
Код
Авторство
О чём код?
name: Goose integration tests on: push: branches: - main pull_request: workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test: name: Run integration tests timeout-minutes: 10 runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v6 - name: Install Go uses: actions/setup-go@v6 with: go-version: "stable" - name: Install tparse run: | mkdir -p $HOME/.local/bin curl -L -o $HOME/.local/bin/tparse https://github.com/mfridman/tparse/releases/latest/download/tparse_linux_x86_64 chmod +x $HOME/.local/bin/tparse echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Run full integration tests run: | make test-integration