Sha256: 3361008e0442cd5e9250d2ed3f9b3f37890410c0d67cd1dab9f1ee118e08059c
Contents?: true
Size: 1020 Bytes
Versions: 4
Compression:
Stored size: 1020 Bytes
Contents
name: CI on: [push, pull_request] jobs: specs: strategy: fail-fast: false matrix: os: [ ubuntu, macos, windows ] ruby: [ 2.5.9, 2.6.10, 2.7.6, 3.0.4, 3.1.2 ] runs-on: ${{ matrix.os }}-latest steps: - name: git config autocrlf run: git config --global core.autocrlf false if: matrix.os == 'windows' - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run specs (Linux) if: matrix.os == 'ubuntu' run: bundle exec rake - name: Run specs (macOS) if: matrix.os == 'macos' run: bundle exec rake - name: Run specs (Windows) if: matrix.os == 'windows' run: bundle exec rake # Actions uses UTF8, causes test failures, similar to normal OS setup #[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437") #[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
u3d-1.3.3 | .github/workflows/ci.yml |
u3d-1.3.2 | .github/workflows/ci.yml |
u3d-1.3.1 | .github/workflows/ci.yml |
u3d-1.3.0 | .github/workflows/ci.yml |