.github/workflows/ubuntu.yml in metanorma-mpfd-0.3.19 vs .github/workflows/ubuntu.yml in metanorma-mpfd-0.3.20
- old
+ new
@@ -3,19 +3,29 @@
name: ubuntu
on:
push:
branches: [ master ]
+ tags:
+ - '*'
pull_request:
+ paths-ignore:
+ - .github/workflows/macos.yml
+ - .github/workflows/windows.yml
jobs:
test-linux:
name: Test on Ruby ${{ matrix.ruby }} Ubuntu
runs-on: ubuntu-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: