Skip to content

Commit

Permalink
Results 4
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame authored Aug 28, 2023
1 parent f25a767 commit 67289f5
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
- uses: actions/checkout@v3
with:
repository: ${{ matrix.repo }}

- name: touch
run: |
find . -name '*.go' | while read f;do ls -la $f;echo "// $(date)" >> $f;N=$((N + 1));touch $f;echo $N;ls -la $f;if [[ $N -gt 10 ]];then break;fi done
- name: Install Go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -141,6 +145,10 @@ jobs:
- uses: actions/checkout@v3
with:
repository: ${{ matrix.repo }}

- name: touch
run: |
find . -name '*.go' | while read f;do ls -la $f;echo "// $(date)" >> $f;N=$((N + 1));touch $f;echo $N;ls -la $f;if [[ $N -gt 10 ]];then break;fi done
- name: Install Go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -168,14 +176,11 @@ jobs:
path: |
${{ env.cache }}
key: action-cache-build--${{ env.repo }}--${{ hashFiles('**/*.go') }}
restore-keys: action-cache-build--${{ env.repo }}--

- name: get
run: |
go get
- name: touch
run: |
find . -name '*.go' | while read f;do ls -la $f;echo "// $(date)" >> $f;N=$((N + 1));touch $f;echo $N;ls -la $f;if [[ $N -gt 10 ]];then break;fi done
- name: build
run: |
Expand Down

0 comments on commit 67289f5

Please sign in to comment.