Skip to content

feat(ci) : Add RSA Generate Test Step for github actions #2

feat(ci) : Add RSA Generate Test Step for github actions

feat(ci) : Add RSA Generate Test Step for github actions #2

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
go-version: ['1.22']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
- name: Test RSA key generation
run: |
mkdir -p testdir
go run main.go -dir testdir
if [ ! -f testdir/private-key.pem ]; then
echo "private-key.pem was not created"
exit 1
fi
echo "private-key.pem was successfully created in testdir"