Skip to content

Commit

Permalink
feat: Install workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
matbme committed Nov 27, 2023
1 parent 2099b85 commit a65b368
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
push:
branches: [ "main" ]
pull_request_target:
branches: [ "main" ]
types: [opened, synchronize, reopened]
branches: [ "main" ]
types: [opened, synchronize, reopened]

jobs:
build:
Expand All @@ -14,9 +14,16 @@ jobs:
image: ghcr.io/vanilla-os/pico:main
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21

- name: Install dependencies
run: |
apt-get update
apt-get install make
- name: Build
run: make

0 comments on commit a65b368

Please sign in to comment.