Skip to content

Release v1.2.2

Release v1.2.2 #1189

Workflow file for this run

name: sedge CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
name: Build sedge
strategy:
matrix:
go: ["1.19"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Install gofumpt
if: matrix.os == 'ubuntu-latest'
run: make install-gofumpt
- name: Check Format Unix
if: matrix.os == 'ubuntu-latest'
run: test -z "$(gofumpt -l . | tee >(cat 1>&2))"
- name: Install mockgen
run: make install-mockgen
- name: Generate mocks
run: make generate
- name: Check go mod status
run: |
make gomod_tidy
if [[ ! -z $(git status -s) ]];
then
echo "Go mod - state is not clean:"
git status -s
git diff "$GITHUB_SHA"
exit 1
fi
shell: bash
- name: Check build
run: make compile