Sha256: 0c1e40889a188a8703589b6ad59c04c55c25bb6331040355c5a7bf51dd27614a

Contents?: true

Size: 1020 Bytes

Versions: 3

Compression:

Stored size: 1020 Bytes

Contents

# Auto-generated !!! Do not edit it manually
# use ci-master https://github.com/metanorma/metanorma-build-scripts
name: macos

on: [push]

jobs:
  test-macos:
    name: Test on Ruby ${{ matrix.ruby }} macOS
    runs-on: macos-latest
    strategy:
      matrix:
        ruby: [ '2.6', '2.5', '2.4' ]
    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 -v "~> 2" --force
          bundle install --jobs 4 --retry 3
      - name: Use Python
        uses: actions/setup-python@v1
        with:
          python-version: '2.7'
          architecture: 'x64'
      - name: Install xml2rfc
        run: |
          pip install --user xml2rfc
      - name: Run specs
        run: |
          export PATH=$(python -c "import os,site; print os.path.join(site.USER_BASE, 'bin')"):$PATH
          bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
metanorma-ietf-1.0.10 .github/workflows/macos.yml
metanorma-ietf-1.0.9 .github/workflows/macos.yml
metanorma-ietf-1.0.8 .github/workflows/macos.yml