.github/workflows/macos.yml in reverse_adoc-0.2.8 vs .github/workflows/macos.yml in reverse_adoc-0.2.9

- old
+ new

@@ -4,25 +4,32 @@ on: push: branches: [ master ] pull_request: + paths-ignore: + - .github/workflows/ubuntu.yml + - .github/workflows/windows.yml jobs: test-macos: name: Test on Ruby ${{ matrix.ruby }} macOS runs-on: macos-latest + continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: ruby: [ '2.6', '2.5', '2.4' ] + experimental: [false] + include: + - ruby: '2.7' + experimental: true steps: - uses: actions/checkout@master - name: Use Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - architecture: 'x64' - name: Update gems run: | sudo gem install bundler --force bundle install --jobs 4 --retry 3 - name: Run specs