RSDK-9814 Increase packet buffer size to 10 #22
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: run linter, unit tests, dependency check on each commit | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**/**.go' | |
pull_request: | |
paths: | |
- '**/**.go' | |
- 'Makefile' | |
- '.github/workflows/lint-test.yml' | |
jobs: | |
quality-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.23 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
- name: Run unit tests | |
run: make test | |
- name: Run linter | |
run: make lint | |
license_finder: | |
uses: ./.github/workflows/license_finder.yml |