UPGRADE: Feature/sharepoint online #30
Workflow file for this run
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: Ruby specs | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: Ruby specs | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2'] | |
experimental: [false] | |
include: | |
- ruby-version: 'head' | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
env: | |
SP_USERNAME: test | |
SP_PASSWORD: test | |
SP_URL: http://localhost:1234/ | |
steps: | |
- name: Install libmagic-dev | |
run: | | |
sudo apt-get update | |
sudo apt-get -yq --no-install-suggests --no-install-recommends install libmagic-dev | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Run specs | |
run: bundle exec rspec |