Skip to content

Commit 4536b83

Browse files
mikelolasagastibradfitz
authored andcommitted
Run GH Actions also in PRs
Signed-off-by: Mikel Olasagasti Uranga <[email protected]>
1 parent d7e81fc commit 4536b83

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Test
2-
on: [push]
2+
on:
3+
push:
4+
pull_request:
35

46
jobs:
57
build:
@@ -11,7 +13,9 @@ jobs:
1113

1214
steps:
1315
- name: install memcached
14-
run: sudo apt-get install memcached
16+
run: |
17+
sudo apt update
18+
sudo apt install memcached
1519
- uses: actions/checkout@v3
1620
- name: Setup Go ${{ matrix.go-version }}
1721
uses: actions/setup-go@v4

0 commit comments

Comments
 (0)