Skip to content

Commit

Permalink
run 1
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame authored Aug 27, 2023
1 parent d507ffb commit 06adfc2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ jobs:
run: |
go get
- name: touch
run: |
find . -name '*.go' | while read f;do echo "// $(date)" >> $f;N=$((N + 1));if [[ $N -gt 1 ]];then break;fi done
- name: build
run: |
go build
Expand Down Expand Up @@ -109,7 +113,7 @@ jobs:
- name: get
run: |
go get
- name: build
run: |
go build
Expand Down Expand Up @@ -166,8 +170,11 @@ jobs:
- name: get
run: |
go get
- name: build
- name: touch
run: |
find . -name '*.go' | while read f;do echo "// $(date)" >> $f;N=$((N + 1));if [[ $N -gt 1 ]];then break;fi done
- name: build
run: |
go build

0 comments on commit 06adfc2

Please sign in to comment.