Update FUNDING.yml #30
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: test | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: ${{ matrix.os }} Ruby ${{ matrix.ruby }} | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: ["ubuntu"] | |
ruby: ["3.2", "3.3"] | |
steps: | |
- run: | | |
sudo apt-get update -yq | |
sudo apt-get install -y libgtkd-3-dev libgirepository1.0-dev at-spi2-core xvfb | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: | | |
bundle install | |
- run: | | |
xvfb-run bundle exec rake spec |