feat: add editorconfig (#3) #1
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: Continuos Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '0 0 * * 1' # Every Monday at 00:00 UTC | |
jobs: | |
golang-check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [ | |
"1.20", | |
"1.21", | |
"1.22", | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install Go dependencies | |
run: go mod download | |
- name: Go unit and integration tests | |
run: make simulation-test | |
# TODO coverage report | |
- name: Go linters | |
run: make lint | |
container-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build container image | |
run: make docker-build | |
- name: Container file linter | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: Dockerfile | |
project-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check if 'make generate' was run | |
run: make check-generate | |
- name: Check if 'make manifests' was run | |
run: make check-manifests | |
- name: Check all files format | |
run: make ec |