Skip to content

Delete .env

Delete .env #29

Workflow file for this run

name: Go Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20.4
- name: Install Make
run: |
sudo apt update
sudo apt install -y make
- name: Build
run: make build
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20.4
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...