Skip to content

Commit c7dda29

Browse files
committed
Merge branch 'master' of github.com:libvips/ruby-vips
2 parents 66f2d17 + 572a6b9 commit c7dda29

File tree

1 file changed

+5
-20
lines changed

1 file changed

+5
-20
lines changed

.github/workflows/test.yml

+5-20
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
name: Test
22

3-
on:
4-
push:
5-
branches:
6-
- master
7-
pull_request:
8-
pull_request_target:
9-
branches:
10-
- master
3+
on: [push, pull_request]
114

125
env:
136
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
@@ -36,7 +29,7 @@ jobs:
3629

3730
strategy:
3831
matrix:
39-
os-version: [ 'ubuntu-20.04' ]
32+
os-version: [ 'ubuntu-24.04' ]
4033
ruby-version:
4134
- '2.3'
4235
- '2.4'
@@ -62,19 +55,11 @@ jobs:
6255
ruby-version: ${{ matrix.ruby-version }}
6356
bundler-cache: true
6457

65-
- name: Update apt
66-
env:
67-
DEBIAN_FRONTEND: noninteractive
68-
run:
69-
sudo apt-get update -qq -o Acquire::Retries=3
70-
7158
- name: Install libvips
72-
env:
73-
DEBIAN_FRONTEND: noninteractive
74-
run:
59+
run: |
60+
sudo apt-get update
7561
# we only need the library
76-
sudo apt-get install --no-install-recommends --fix-missing -qq -o Acquire::Retries=3
77-
libvips
62+
sudo apt-get install --no-install-recommends libvips
7863
7964
- name: Run Tests
8065
run: bundle exec rake spec

0 commit comments

Comments
 (0)