chore(deps): bump github/codeql-action from 3.22.12 to 3.27.0 #1069
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: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
unit-test: | |
strategy: | |
matrix: | |
go: [ 1.19 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3 | |
- name: Install Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Prepare external plugin tests | |
run: | | |
go build -buildmode=plugin -o tests/yor_plugins/example/extra_tags.so tests/yor_plugins/example/*.go | |
go build -buildmode=plugin -o tests/yor_plugins/tag_group_example/extra_tag_groups.so tests/yor_plugins/tag_group_example/*.go | |
- name: Test | |
run: go build -v && go test ./src/... | |
linter: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
steps: | |
- name: print env | |
run: env | |
- name: print hostname | |
run: hostname | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3 | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@94d61e3205b61acf4ddabfeb13c5f8a13eb4167b # v2 | |
with: | |
tool_name: golangci-lint | |
fail_on_error: true | |
golangci_lint_flags: "--skip-dirs tests/yor_plugins" | |
integration-tests: | |
strategy: | |
matrix: | |
go: [ 1.19 ] | |
runs-on: [self-hosted, public, linux, x64] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3 | |
- name: Install Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: build | |
run: go build | |
- name: Clone Terragoat - vulnerable terraform | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3 | |
with: | |
repository: bridgecrewio/terragoat # clone https://github.com/bridgecrewio/terragoat/ | |
fetch-depth: 0 | |
clean: false | |
path: 'terragoat' | |
ref: 063dc2db3bb036160ed39d3705508ee8293a27c8 | |
- name: Run yor | |
run: | | |
git config --local user.email "[email protected]" | |
./yor list-tags -g code2cloud,git > list-tags-result.txt | |
./yor tag -d terragoat -o json --output-json-file result.json | |
- name: Run integration tests | |
run: go test -race ./tests/integration/... |