From 6f7bfd989a9355767e3761b661bc2d9c0e47c245 Mon Sep 17 00:00:00 2001 From: adfoster-r7 Date: Fri, 6 Dec 2024 12:01:31 +0000 Subject: [PATCH] Add automated tests --- .github/workflows/verify.yml | 64 ++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 0000000..049ea50 --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,64 @@ +name: Verify + +# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions +permissions: + actions: none + checks: none + contents: none + deployments: none + id-token: none + issues: none + discussions: none + packages: none + pages: none + pull-requests: none + repository-projects: none + security-events: none + statuses: none + +on: + push: + branches: + - '*' + pull_request: + branches: + - '*' + +jobs: + test: + runs-on: ${{ matrix.os }} + timeout-minutes: 40 + + strategy: + fail-fast: false + matrix: + ruby: + - '3.1' + - '3.2' + - '3.3' + os: + - ubuntu-20.04 + - windows-2019 + - macos-13 + - ubuntu-latest + exclude: + - { os: ubuntu-latest, ruby: '2.7' } + - { os: ubuntu-latest, ruby: '3.0' } + + env: + RAILS_ENV: test + + name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + + - name: rspec + run: | + bundle exec rspec