Skip to content

Added workflows to the repo for testsing and building #1

Added workflows to the repo for testsing and building

Added workflows to the repo for testsing and building #1

Workflow file for this run

name: go.mod Checker
on:
push:
branches:
- main
pull_request:
jobs:
go_mod_tidy:
name: Tidy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
cache: true
- shell: bash
run: go mod tidy
- shell: bash
working-directory: ./
run: go mod tidy
- shell: bash
run: scripts/tests.clean.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true