8000 fixup! Allow disabling of all network accesses · jekyll/github-metadata@11b982b · GitHub
[go: up one dir, main page]

Skip to content

Allow disabling of all network accesses #111

Allow disabling of all network accesses

Allow disabling of all network accesses #111

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: 'Ruby: ${{ matrix.ruby_version }} • Faraday: ~> ${{ matrix.faraday_version }}'
runs-on: ${{ matrix.os }}
env:
FARADAY_VERSION: ${{ matrix.faraday_version }}
strategy:
fail-fast: false
matrix:
ruby_version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
faraday_version:
- '1.0'
- ' 20DF 2.0'
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: script/cibuild
0