feature/add_dev_workflow #1

Merged
maximo merged 11 commits from feature/add_dev_workflow into master 2024-11-16 22:31:59 -04:00
Showing only changes of commit c93003055c - Show all commits

View File

@ -8,11 +8,11 @@ on:
- '**.go' - '**.go'
jobs: jobs:
test:
env: env:
TOKEN: ${{ secrets.TOKEN }} TOKEN: ${{ secrets.TOKEN }}
USERNAME: ${{ vars.USERNAME }} USERNAME: ${{ vars.USERNAME }}
TAG_VERSION: ${{ github.ref_name }} TAG_VERSION: ${{ github.ref_name }}
test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checkout code
@ -27,6 +27,10 @@ jobs:
run: go test -v ./... run: go test -v ./...
vulnCheck: vulnCheck:
env:
TOKEN: ${{ secrets.TOKEN }}
USERNAME: ${{ vars.USERNAME }}
TAG_VERSION: ${{ github.ref_name }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: checkout Code - name: checkout Code