try apt myself #130
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: Squib Unit Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
ruby: ['3.1', '3.2', '3.3', '3.4', head] | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- run: ruby --version # explicitly show the ruby version | |
- run: apt-get install -V -y libglib2.0-dev | |
- run: bundle install | |
- run: bundle exec rake |