From 08f893ca91a979a662d7bfb2bb53c411930e98bc Mon Sep 17 00:00:00 2001 From: "Dmytro (Dima) Kabanov" Date: Mon, 25 Nov 2024 11:31:29 -0800 Subject: [PATCH] Add github actions to run tests --- .github/workflows/rspec.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/rspec.yml diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml new file mode 100644 index 0000000..c953434 --- /dev/null +++ b/.github/workflows/rspec.yml @@ -0,0 +1,15 @@ +name: CI tests +on: push +jobs: + run-rspec-tests: + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v3 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - name: Run tests + run: | + bundle exec rspec \ No newline at end of file