Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ssuman2-infoblox committed Nov 3, 2023
1 parent 6a04ecd commit 0892584
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: sk-test

on:
push:
branches:
- sk-test
tags:
- v*.*.*-sk
pull_request: {}
workflow_dispatch: {}

env:
# Common versions
GO_VERSION: '1.18'
GOLANGCI_VERSION: 'v1.47.1'
DOCKER_BUILDX_VERSION: 'v0.8.2'

# Common users. We can't run a step 'if secrets.AWS_USR != ""' but we can run
# a step 'if env.AWS_USR' != ""', so we copy these to succinctly test whether
# credentials have been provided before trying to run steps that need them.
DOCKER_USR: ${{ github.actor }}

jobs:
get-tags:
runs-on: ubuntu-20.04
steps:
- name: Print Tags
run: |
echo "${GITHUB_REF}"

0 comments on commit 0892584

Please sign in to comment.