Skip to content

Commit

Permalink
Add environmental variables to CI
Browse files Browse the repository at this point in the history
Adding the CHILDPROCESS_UNSET and CHILDPROCESS_POSIX_SPAWN permutations
to the build matrix.
  • Loading branch information
enkessler committed Jun 5, 2021
1 parent 19ecd8b commit 65b31bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: CI

on: [push, pull_request]

env:
CHILDPROCESS_UNSET: should-be-unset

jobs:

test:
Expand All @@ -10,7 +12,11 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0']
posix_spawn: [true, false]

runs-on: ${{ matrix.os }}
env:
CHILDPROCESS_POSIX_SPAWN: ${{ matrix.posix_spawn }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 65b31bd

Please sign in to comment.