-
Notifications
You must be signed in to change notification settings - Fork 883
67 lines (66 loc) · 2.03 KB
/
Copy pathci.yml
File metadata and controls
67 lines (66 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: CI
permissions:
contents: read
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
CI:
if: ${{ github.repository == 'googleapis/google-api-ruby-client' }}
strategy:
matrix:
include:
- os: ubuntu-latest
ruby: "3.2"
task: "--include-spec"
- os: ubuntu-latest
ruby: "3.3"
task: "--include-spec"
- os: ubuntu-latest
ruby: "3.4"
task: "--include-spec"
- os: ubuntu-latest
ruby: "4.0"
task: "--include-spec --include-yardoc --include-build"
rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal"
- os: macos-latest
ruby: "4.0"
task: "--include-spec"
- os: windows-latest
ruby: "4.0"
task: "--include-spec"
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
with:
persist-credentials: false
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@9eb537ca036ebaed86729dcb9309076e4c5c3b74 # v1.314.0
with:
ruby-version: "${{ matrix.ruby }}"
- name: Install tools
run: |
gem install --no-document toys
- name: Hack perms
# Hack permissions to avoid a bundler issue.
# See https://github.com/actions/runner-images/issues/10215
# and https://github.com/rubygems/rubygems/issues/7983.
shell: bash
# zizmor: ignore[template-injection]
run: |
if [ -d /opt/hostedtoolcache/Ruby ]; then
chmod -R o-w /opt/hostedtoolcache/Ruby
fi
- name: Test ${{ matrix.task }} ${{ matrix.rubyopt }}
# zizmor: ignore[template-injection]
run: |
toys ci -v --only ${{ matrix.task }} --github-event-name=${{ github.event_name }} --github-event-payload=${{ github.event_path }}
env:
RUBYOPT: "${{ matrix.rubyopt }}"