/
githubmirror
/
serverless
Обзор
Документация
Войти
/
githubmirror
/
serverless
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/ci-binary-installer.yml
33 строки
816 B
dependabot[bot]
chore(deps): bump the actions group with 3 updates (#13730)
22 июл 2026, 18:08
Не верифицирован
22 июл 2026, 18:08
6d1acf9
Код
Авторство
О чём код?
name: 'CI: Binary Installer' permissions: contents: read on: workflow_dispatch: pull_request: branches: [main] paths: - '.github/workflows/ci-binary-installer.yml' - 'binary-installer/**' defaults: run: working-directory: ./binary-installer jobs: test-binary-installer: name: 'Test: Binary Installer' runs-on: ubuntu-latest steps: - name: 'Checkout Code' uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: 'Setup: Go' uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: go-version: '>=1.26.5' cache-dependency-path: binary-installer/go.sum - name: 'Test: Unit' run: make test - name: 'Build: Production' run: make build-prod