From 4a8bf2f9b80cce7104597a0aa033dae3cede2e12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Hauge=20Bj=C3=B8rnskov?= <19725+henrikbjorn@users.noreply.github.com> Date: Tue, 27 Feb 2024 11:52:24 +0100 Subject: [PATCH] move to GitHub actions --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 0000000..89777f2 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: Test + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + ruby-version: + - 2.6 + - 2.7 + - 3.0 + - 3.1 + - 3.2 + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true + + - run: bundle exec rake