From 485ff3818761bda96c7f6206c3ca8c8e98dd1754 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Wed, 9 Jun 2021 07:30:32 +0200 Subject: [PATCH] GitHub Actions: test pull requests --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..e713cecc --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Ruby tests + +on: + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2.3.4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1.66.1 + with: + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Run tests + run: bundle exec rake