From 02eabe22bba60a384b82dbc29a2b3d855b01147b Mon Sep 17 00:00:00 2001 From: priya-kinthali Date: Fri, 12 Apr 2024 12:37:44 +0530 Subject: [PATCH] initial commit --- .github/workflows/463-key.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/.github/workflows/463-key.yml b/.github/workflows/463-key.yml index 5b7936f..188e6e8 100644 --- a/.github/workflows/463-key.yml +++ b/.github/workflows/463-key.yml @@ -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 \ No newline at end of file + - 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 \ No newline at end of file