Skip to content

Commit

Permalink
Add smoke test to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrene committed Jan 12, 2024
1 parent abece04 commit d73d933
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "CI Tests"
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master

jobs:
build:
name: "[${{matrix.ruby}}/${{matrix.os}}] CI Tests [Ruby/OS]"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-10.15, windows-2019]
ruby: [2.6, 2.7, "3.0", 3.1, 3.2, 3.3]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Ruby & 'bundle install'
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Test
run: |
bundle install
inch
env:
CI: true

0 comments on commit d73d933

Please sign in to comment.