mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-13 04:46:39 +08:00
87375b5534
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v1...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
84 lines
1.8 KiB
YAML
84 lines
1.8 KiB
YAML
name: build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
go-version: [1.22.x, 1.23.x]
|
|
runs-on: ${{ matrix.os }}
|
|
services:
|
|
redis:
|
|
image: redis:7
|
|
ports:
|
|
- 6379:6379
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
cache: false
|
|
|
|
- name: Build core module
|
|
run: go build -v ./...
|
|
|
|
- name: Build x module
|
|
run: cd x && go build -v ./... && cd ..
|
|
|
|
- name: Test core module
|
|
run: go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
- name: Test x module
|
|
run: cd x && go test -race -v ./... && cd ..
|
|
|
|
- name: Benchmark Test
|
|
run: go test -run=^$ -bench=. -loglevel=debug ./...
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
|
|
build-tool:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
go-version: [1.22.x, 1.23.x]
|
|
runs-on: ${{ matrix.os }}
|
|
services:
|
|
redis:
|
|
image: redis:7
|
|
ports:
|
|
- 6379:6379
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
cache: false
|
|
|
|
- name: Build tools module
|
|
run: cd tools && go build -v ./... && cd ..
|
|
|
|
- name: Test tools module
|
|
run: cd tools && go test -race -v ./... && cd ..
|
|
|
|
golangci:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: stable
|
|
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v6
|
|
with:
|
|
version: v1.61
|