mirror of
https://github.com/lukaszraczylo/graphql-monitoring-proxy.git
synced 2026-06-05 23:03:48 +00:00
61d7a45d00
Update cache library, Update logging library, use miniredis for testing, add additional benchmarks.
74 lines
1.8 KiB
YAML
74 lines
1.8 KiB
YAML
name: Test and release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 3 * * *"
|
|
|
|
env:
|
|
GO_VERSION: ">=1.21"
|
|
|
|
jobs:
|
|
# This job is responsible for preparation of the build
|
|
# environment variables.
|
|
prepare:
|
|
name: Preparing build context
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
id: cache
|
|
with:
|
|
go-version: ${{env.GO_VERSION}}
|
|
cache-dependency-path: "**/*.sum"
|
|
|
|
- name: Go get dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
go get ./...
|
|
|
|
# This job is responsible for running tests and linting the codebase
|
|
test:
|
|
name: "Unit testing"
|
|
# needs: [prepare]
|
|
runs-on: ubuntu-latest
|
|
container: golang:1
|
|
# container: github/super-linter:v4
|
|
needs: [prepare]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{env.GO_VERSION}}
|
|
cache-dependency-path: "**/*.sum"
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
apt-get install ca-certificates make -y
|
|
update-ca-certificates
|
|
go mod tidy
|
|
get -u -v ./...
|
|
go mod tidy -v
|
|
|
|
- name: Run unit tests
|
|
run: |
|
|
CI_RUN=${CI} make test
|
|
|
|
# if go.mod or go.sum have changed then commit the changes to the repository
|
|
- name: Commit changes
|
|
run: |
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --global user.name "github-actions[bot]"
|
|
git add go.mod go.sum
|
|
git commit -m "Update go.mod and go.sum"
|
|
git push
|