Skip to content

Commit

Permalink
Fix test matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Sep 13, 2024
1 parent f53d8ce commit 0c93700
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
matrix:
os:
- ubuntu
- macos

ruby:
- "3.3"
Expand All @@ -32,6 +31,9 @@ jobs:

- name: Run tests
timeout-minutes: 5
env:
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test

- uses: actions/upload-artifact@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ jobs:

- name: Run tests
timeout-minutes: 10
env:
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test:external
59 changes: 59 additions & 0 deletions .github/workflows/test-proxy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Test

on: [push, pull_request]

permissions:
contents: read

env:
CONSOLE_OUTPUT: XTerm

jobs:
test:
name: ${{matrix.ruby}} on ${{matrix.os}}
runs-on: ${{matrix.os}}-latest
continue-on-error: ${{matrix.experimental}}

strategy:
matrix:
os:
- ubuntu
- macos

ruby:
- "3.1"
- "3.2"
- "3.3"

experimental: [false]

include:
- os: ubuntu
ruby: truffleruby
experimental: true
- os: ubuntu
ruby: jruby
experimental: true
- os: ubuntu
ruby: head
experimental: true

steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
bundler-cache: true

- name: Prepare squid
run: |
sudo apt-get install squid
sudo systemctl start squid
- name: Run tests
timeout-minutes: 10
env:
CLOUDFLARE_PROXY: http://localhost:3128
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ jobs:

- name: Run tests
timeout-minutes: 10
env:
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test

0 comments on commit 0c93700

Please sign in to comment.