Skip to content

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

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

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

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@v4
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@v4
with:
go-version: 'stable'
- run: |
sudo python3 -m http.server 80 &> /dev/null &
echo "pid=$!" >> "$GITHUB_OUTPUT"
id: server
- run: make cover
- run: kill -9 ${{ steps.server.outputs.pid }}
- 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@v2
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