Move sensitive credentials to the secrets

This commit is contained in:
Ilja Lapkovskis 2024-01-19 17:40:39 +02:00
parent 18ddf275ef
commit f6bd2d0113
No known key found for this signature in database
GPG key ID: 53D2AA4F0D1079C4
5 changed files with 74 additions and 30 deletions

View file

@ -1,33 +0,0 @@
name: Test
on:
push:
branches:
- master
- develop
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: go build -v .
- name: Test
run: go test -coverprofile=coverage.out -covermode=atomic -v .
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
file: ./coverage.out