ubuntu to 24 and macos to 15 #45
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: rake | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
rake: | |
strategy: | |
matrix: | |
os: [ubuntu-24.04] | |
ruby: ['3.0'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get -y install ghostscript | |
- uses: teatimeguest/setup-texlive-action@v2.6.0 | |
with: | |
update-all-packages: true | |
packages: scheme-basic xetex ffcode libertine microtype hypdoc href-ul newtx biblatex biber verbatimcopy pgfopts silence setspace makecell textpos merriweather mdframed zref needspace pgf pgfplots babel-russian cyrillic lh cm-super anyfontsize csquotes | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- run: bundle update | |
- run: bundle exec rake |