Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanda Cornwell authored and Amanda Cornwell committed Oct 21, 2023
1 parent 3b74eb1 commit 861048c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/gobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ jobs:
- name: Checkout Terrascan
uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

- name: Run test.sh
run: |
chmod +x test.sh
Expand All @@ -34,12 +29,18 @@ jobs:
- name: Read File and Set as Environment Variable
run: |
file_content=$(cat test.txt)
echo "FILE_CONTENT1=$file_content" >> $FILE
env:
MY_VARIABLE: 'file_content'
- name: Echo a Variable
run: |
echo "Variable Value: $FILE"
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}

- name: Install golint
run: go install golang.org/x/lint/golint@latest

Expand Down

0 comments on commit 861048c

Please sign in to comment.