Fixing cli docs for deletingUserFromOrg, performance tweak to org upload #258
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: Code Scanners | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
GO_VERSION: 1.22.1 | |
permissions: | |
contents: read | |
# Optional: allow read access to pull request. Use with `only-new-issues` option. | |
# pull-requests: read | |
jobs: | |
code_scanning: | |
strategy: | |
matrix: | |
job_name: [security, vuln_check, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.1" | |
cache: false | |
- name: Install Task | |
run: sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d | |
- name: Installing Go Tools | |
run: ./bin/task install_tools | |
- name: Running Scan | |
run: ./bin/task ${{ matrix.job_name }} | |