Skip to content

Commit

Permalink
Merge branch 'main' into plmn
Browse files Browse the repository at this point in the history
  • Loading branch information
gab-arrobo authored Jan 24, 2024
2 parents 0c7e6f3 + d8c5df9 commit d934b54
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 137 deletions.
45 changes: 0 additions & 45 deletions .github/workflows/docker.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/golangci-lint.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,42 @@ on:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: Build
run: go build

docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Build Docker image
run: make docker-build

lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: golangci-lint
uses: golangci/[email protected]
with:
version: latest
args: -v --config ./.golangci.yml

license-check:
runs-on: ubuntu-latest
steps:
Expand All @@ -29,3 +65,15 @@ jobs:
uses: fossa-contrib/fossa-action@v3
with:
fossa-api-key: 9dc8fa92e3dd565687317beb87b56d89

unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: Unit tests
run: go test ./...
48 changes: 0 additions & 48 deletions .github/workflows/pull_request.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/run-gnbsim-unit-test.yml

This file was deleted.

0 comments on commit d934b54

Please sign in to comment.