/
avito.tech
/
normalize
Обзор
Документация
Войти
/
avito.tech
/
normalize
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
master
.github/workflows/ci.yml
40 строк
701 B
Valentin Khomutenko
initial commit
22 мар 2021, 12:27
22 мар 2021, 12:27
26fc077
Код
Авторство
О чём код?
name: ci on: - push - pull_request jobs: build: name: Build strategy: matrix: os: [ ubuntu-latest ] runs-on: ${{ matrix.os }} steps: - name: Set up Go uses: actions/setup-go@v2 with: go-version: ^1.15 id: go - name: Check out code uses: actions/checkout@v2 - name: Get dependencies run: make deps - name: Build run: make build - name: Lint uses: golangci/golangci-lint-action@v2 with: args: --config=.golangci.yml ./... - name: Test run: make test - name: Upload coverage to Codecov uses: codecov/codecov-action@v1