Skip to content

build(deps): Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0 (#33) #126

build(deps): Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0 (#33)

build(deps): Bump github.com/fsnotify/fsnotify from 1.6.0 to 1.7.0 (#33) #126

Workflow file for this run

name: "Tests"
on:
push:
branches:
- master
paths:
- "**.go"
- "go.mod"
pull_request:
branches:
- "**"
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- uses: actions/checkout@v3
- name: Vetting
run: make vet
- name: Build
run: make build
- name: Clean up
run: make clean
codecov:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: make cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: /tmp/teler-coverage.out
golangci:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=5m --tests=false
semgrep:
runs-on: ubuntu-latest
needs: tests
container:
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- run: semgrep ci
env:
SEMGREP_RULES: auto
codeql:
needs: tests
uses: ./.github/workflows/codeql.yaml