diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 83a8a5ac..6eafdc2e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,5 +1,5 @@ # This is a workflow with the following actions -#1. Check Go formatting, linting, vetting +#1. Check Go formatting, vetting #2. Check for forbidden words #3. Build #4. Go security @@ -33,12 +33,12 @@ env: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: code-check: - name: Check Go formatting, linting, vetting + name: Check Go formatting, vetting runs-on: ubuntu-latest steps: - name: Checkout the code uses: actions/checkout@v3 - - name: Run the formatter, linter, and vetter + - name: Run the formatter, and vetter uses: dell/common-github-actions/go-code-formatter-vetter@main with: directories: ./...