mirror of
https://github.com/gomods/athens
synced 2026-02-03 08:40:31 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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>
176 lines
4.4 KiB
YAML
176 lines
4.4 KiB
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GOLANGCI_LINT_VERSION: v2.1.6
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
# We need to set a cache marker to ensure that the cache is individual for each job.
|
|
- name: Add Cache Marker
|
|
run: echo "lint" > env.txt
|
|
|
|
- name: Set up Go
|
|
id: install-go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
cache-dependency-path: |
|
|
go.sum
|
|
env.txt
|
|
|
|
- name: Download dependencies
|
|
run: go mod download
|
|
if: steps.install-go.outputs.cache-hit != 'true'
|
|
|
|
- name: Lint code
|
|
uses: golangci/golangci-lint-action@v9
|
|
with:
|
|
version: ${{ env.GOLANGCI_LINT_VERSION }}
|
|
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
ATHENS_MONGO_STORAGE_URL: mongodb://localhost:27017
|
|
ATHENS_MINIO_ENDPOINT: http://localhost:9000
|
|
REDIS_TEST_ENDPOINT: localhost:6379
|
|
REDIS_SENTINEL_TEST_ENDPOINT: localhost:26379
|
|
REDIS_SENTINEL_TEST_MASTER_NAME: redis-1
|
|
REDIS_SENTINEL_TEST_PASSWORD: sekret
|
|
PROTECTED_REDIS_TEST_ENDPOINT: localhost:6380
|
|
PROTECTED_REDIS_TEST_USERNAME: default
|
|
REDIS_SENTINEL_TEST_PROTECTED_ENDPOINT: localhost:26380
|
|
REDIS_SENTINEL_TEST_PROTECTED_MASTER_NAME: protectedredis-1
|
|
ATHENS_PROTECTED_REDIS_PASSWORD: AthensPass1
|
|
GA_PULL_REQUEST: ${{github.event.number}}
|
|
|
|
services:
|
|
mongo:
|
|
image: mongo
|
|
ports:
|
|
- 27017:27017
|
|
|
|
minio:
|
|
image: minio/minio:edge-cicd
|
|
ports:
|
|
- 9000:9000
|
|
env:
|
|
MINIO_ACCESS_KEY: minio
|
|
MINIO_SECRET_KEY: minio123
|
|
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- 6379:6379
|
|
|
|
redis-sentinel:
|
|
image: bitnamilegacy/redis-sentinel
|
|
env:
|
|
REDIS_MASTER_HOST: redis
|
|
REDIS_MASTER_SET: redis-1
|
|
REDIS_SENTINEL_PASSWORD: sekret
|
|
REDIS_SENTINEL_QUORUM: "1"
|
|
ports:
|
|
- 26379:26379
|
|
|
|
protectedredis:
|
|
image: bitnamilegacy/redis
|
|
ports:
|
|
- 6380:6380
|
|
env:
|
|
REDIS_PORT_NUMBER: 6380
|
|
REDIS_PASSWORD: AthensPass1
|
|
|
|
redis-sentinel-protected-redis:
|
|
image: bitnamilegacy/redis-sentinel
|
|
env:
|
|
REDIS_MASTER_HOST: protectedredis
|
|
REDIS_MASTER_PORT_NUMBER: 6380
|
|
REDIS_MASTER_SET: protectedredis-1
|
|
REDIS_SENTINEL_PASSWORD: sekret
|
|
REDIS_SENTINEL_QUORUM: "1"
|
|
REDIS_SENTINEL_PORT_NUMBER: 26380
|
|
ports:
|
|
- 26380:26380
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
# We need to set a cache marker to ensure that the cache is individual for each job.
|
|
- name: Add Cache Marker
|
|
run: echo "test" > env.txt
|
|
|
|
- name: Set up Go
|
|
id: install-go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
cache-dependency-path: |
|
|
go.sum
|
|
env.txt
|
|
|
|
- name: Download dependencies
|
|
run: go mod download
|
|
if: steps.install-go.outputs.cache-hit != 'true'
|
|
|
|
- name: Verify changes
|
|
run: make verify
|
|
|
|
- name: Unit tests
|
|
run: go test -v -race ./...
|
|
|
|
- name: End to end tests
|
|
if: success() || failure()
|
|
run: make test-e2e
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
# We need to set a cache marker to ensure that the cache is individual for each job.
|
|
- name: Add Cache Marker
|
|
run: echo "build" > env.txt
|
|
|
|
- name: Set up Go
|
|
id: install-go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
cache-dependency-path: |
|
|
go.sum
|
|
env.txt
|
|
|
|
- name: Download dependencies
|
|
run: go mod download
|
|
if: steps.install-go.outputs.cache-hit != 'true'
|
|
|
|
- name: Capture Current Date
|
|
id: date
|
|
run: echo "::set-output name=date::$(date -u '+%Y-%m-%d-%H:%M:%S-%Z')"
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v6
|
|
with:
|
|
version: latest
|
|
args: release --clean --snapshot
|
|
env:
|
|
DATE: ${{ steps.date.outputs.date }}
|