remove duplicate update logic in gateway lwm2m (#1092) #2251
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.4" | |
- name: Install pcap | |
run: sudo apt-get install libpcap-dev | |
- name: Run coverage | |
run: make test | |
- name: Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage_tdengine.out,./coverage.out | |
name: codecov-shifu | |
fail_ci_if_error: false | |
token: ${{ secrets.CODECOV_TOKEN }} # required | |
verbose: true |