-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
baad657
commit 02eabe2
Showing
1 changed file
with
12 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
name: Reproduce Expired Key Issue | ||
|
||
on: | ||
push: | ||
branches: [ 463-signingkey ] | ||
|
||
push: | ||
branches: | ||
- 454-testversion | ||
|
||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
name: Build on macOS 14 (M1) | ||
runs-on: macos-14 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: 'v5.0.0' | ||
repository: 'actions/setup-go' | ||
|
||
- name: Run Go command | ||
run: go version | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
- name: Check Go version | ||
run: go version | ||
- run: go build -o hello-world | ||
- run: ./hello-world |