Bump actions/checkout from 5 to 6 (#40) #105
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| - '!dependabot/**' | |
| tags: | |
| - '**' | |
| pull_request: | |
| jobs: | |
| ruby-versions: | |
| uses: ruby/actions/.github/workflows/ruby_versions.yml@master | |
| with: | |
| engine: cruby | |
| min_version: 2.6 | |
| test: | |
| name: "Ruby ${{ matrix.ruby-version }}: ${{ matrix.runs-on }}" | |
| needs: ruby-versions | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby-version: ${{ fromJson(needs.ruby-versions.outputs.versions) }} | |
| runs-on: | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| exclude: | |
| - {ruby-version: "2.6", runs-on: windows-latest} | |
| - {ruby-version: "2.7", runs-on: windows-latest} | |
| - {ruby-version: "3.0", runs-on: windows-latest} | |
| - {ruby-version: "3.1", runs-on: windows-latest} | |
| runs-on: ${{ matrix.runs-on }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| - name: Install system dependencies | |
| if: | | |
| runner.os == 'Linux' | |
| run: | | |
| sudo apt update | |
| sudo apt install -V -y libcairo-dev | |
| - name: Install system dependencies | |
| if: | | |
| runner.os == 'macOS' | |
| run: | | |
| brew bundle | |
| - name: Install system dependencies | |
| if: | | |
| runner.os == 'Windows' | |
| run: | | |
| ridk exec pacman --sync --noconfirm mingw-w64-x86_64-cairo mingw-w64-ucrt-x86_64-cairo | |
| - name: Install dependencies | |
| run: | | |
| bundle install | |
| - name: Test | |
| run: | | |
| bundle exec rake |