run updated version of standard #78
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: Giblish CI checks | |
on: | |
push: | |
branches: [personal/rillbert/*, main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ["2.7", "3.0", "3.1"] | |
steps: | |
- name: Install binutils | |
run: | | |
sudo apt -y install binutils | |
- name: Install needed packages | |
run: | | |
sudo apt-get -y install libpango1.0-dev graphviz libwebp-dev libzstd-dev | |
- name: Checkout Giblish | |
uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Run tests | |
run: | | |
bundle exec rake |