Merge pull request #1903 from github/jm_immutable_actions #306
This file contains 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: CI | |
on: [push, pull_request] | |
env: | |
JRUBY_OPTS: -Xcext.enabled=true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: "Test / Ruby ${{ matrix.ruby }}" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 10 | |
- uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- uses: actions/[email protected] | |
with: | |
# This should match lib/github/markups.rb GitHub::Markups::MARKUP_RST | |
python-version: "3.x" | |
- uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip | |
- name: Install Perl dependencies | |
run: | | |
curl -1sLf \ | |
'https://dl.cloudsmith.io/public/nxadm-pkgs/rakudo-pkg/setup.deb.sh' \ | |
| sudo -E bash | |
sudo apt-get update -qq | |
sudo apt-get install perl rakudo-pkg | |
curl -L http://cpanmin.us | perl - --sudo App::cpanminus | |
sudo cpanm --installdeps --notest Pod::Simple | |
- name: Install Python dependencies | |
run: python -m pip install docutils | |
- name: Run rake | |
run: | | |
export PATH=$PATH:/.perl6/bin:/opt/rakudo-pkg/bin | |
bundle exec rake |