build(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.11.0 #165
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: "Tests" | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "**.go" | |
- "go.mod" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
cache-dependency-path: '**/go.sum' | |
- 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-file: 'go.mod' | |
cache-dependency-path: '**/go.sum' | |
- run: make cover | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
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@v4 | |
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 | |
auto-merge: | |
if: (github.event_name == 'pull_request') | |
uses: ./.github/workflows/auto-merge.yaml |