[server] Update freq for removing compliance hold #8
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: "Lint (server)" | |
on: | |
# Run on every push (this also covers pull requests) | |
push: | |
# See: [Note: Specify branch when specifying a path filter] | |
branches: ["**"] | |
# Only run if something changes in these paths | |
paths: | |
- "server/**" | |
- ".github/workflows/server-lint.yml" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: server | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "server/go.mod" | |
cache: true | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install libsodium-dev | |
- name: Lint | |
run: "./scripts/lint.sh" |