diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..c75f4149 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,41 @@ +--- +name: CI + +on: + push: + branches: + - '**' + pull_request: + branches: + - '**' + +jobs: + rspec: + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + ruby: + - '3.3' + - '3.2' + - '3.1' + - '3.0' + - 'head' + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + + - name: Update bundler + run: | + gem update --system + bundle install + + - name: RSpec + run: bin/rspec