Integrate EL monitoring stack #1640
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sedge CI | |
on: | |
push: | |
branches: [main, develop] | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
build: | |
name: Build sedge | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
go: '1.21' | |
- os: macos-latest | |
go: '1.21' | |
- os: windows-latest | |
go: '1.21' | |
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@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
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: Install abigen | |
run: make install-abigen | |
- name: Generate mocks and contracts | |
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 |