From 25b0a3282918c9f6099d11e07d2c088ebe1bf93c Mon Sep 17 00:00:00 2001 From: Nicolas Rodriguez Date: Thu, 22 Aug 2024 02:00:14 +0200 Subject: [PATCH] Add GithubAction config --- .github/workflows/ci.yml | 58 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..aeae929a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,58 @@ +--- +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' + - '2.7' + - '2.6' + - '2.5' + - '2.4' + - '2.3' + - 'head' + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + + - name: Update bundler + env: + RUBY_VERSION: ${{ matrix.ruby }} + run: | + case ${RUBY_VERSION} in + 2.3|2.4|2.5|2.6|2.7) + gem update --system 3.2.3 + gem install bundler -v 2.5.18 + ;; + + *) + gem update --system + ;; + esac + + bundle install + + - name: RSpec + run: bin/rspec