Bump actions/upload-artifact from 4.4.3 to 4.5.0 #660
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Code Analysis" | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 0" | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ format('{0}-{1}', github.workflow, github.head_ref) }} | |
cancel-in-progress: true | |
env: | |
GO: "1.23" | |
MONGO_USERNAME: "admin" | |
MONGO_PASSWORD: "adminpass" | |
jobs: | |
UnitTests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] # immutable action | |
- name: Install Go | |
uses: actions/[email protected] # immutable action | |
with: | |
go-version: ${{ env.GO }} | |
- name: Build and Run MongoDB | |
run: make run-docker | |
env: | |
SLEEP: 10 | |
- name: Run Unit Tests | |
env: | |
MONGO_URI: "mongodb://${{ env.MONGO_USERNAME }}:${{ env.MONGO_PASSWORD }}@127.0.0.1:27888/?authSource=admin&directConnection=true" | |
run: go test -race -cover -coverprofile=coverage.out -covermode=atomic | |
- name: Codecov | |
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
GolangCI-Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] # immutable action | |
- name: Install Go | |
uses: actions/[email protected] # immutable action | |
with: | |
go-version: ${{ env.GO }} | |
- name: Run GolangCi-Lint | |
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1 | |
with: | |
version: latest | |
Mocks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] # immutable action | |
- name: Install Go | |
uses: actions/[email protected] # immutable action | |
with: | |
go-version: ${{ env.GO }} | |
- name: Generate Mocks | |
run: make go-install generate-mocks | |
- name: Checking Git | |
run: | | |
DELTA="$(git status --short)" | |
if [ -n "${DELTA}" ] | |
then | |
echo "::error title=Mocks are outdated::Please run 'make generate-mocks' to re-generate the mocks" | |
git status | |
exit 1 | |
fi |