test: add unit tests for the client and utils (#73) #24
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: Push to main | |
on: | |
push: | |
branches: [main] | |
jobs: | |
test: | |
name: Run tests | |
uses: ./.github/workflows/test.yaml | |
snyk: | |
name: Scan dependencies | |
uses: ./.github/workflows/snyk.yaml | |
with: | |
severity-treshold: low | |
secrets: inherit | |
permissions: | |
contents: read | |
security-events: write | |
semgrep: | |
name: Scan source code | |
uses: ./.github/workflows/semgrep.yaml | |
secrets: inherit | |
permissions: | |
contents: read | |
security-events: write | |
release-please: | |
name: Create release-please PR | |
uses: ./.github/workflows/release-please.yaml | |
secrets: inherit | |
permissions: | |
contents: write | |
pull-requests: write |