Skip to content

Commit

Permalink
Merge branch 'tc-atualizacao' into mc-add-output-prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagocamargo committed Nov 10, 2023
2 parents b37c724 + dc9deda commit f5deb4e
Show file tree
Hide file tree
Showing 120 changed files with 1,828 additions and 1,585 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on:
push:
paths-ignore:
- 'docs/**'
- '**.md'
jobs:
test:
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, jruby-head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rubocop
- run: bundle exec rspec
- name: E2E tests
if: ${{ success() && matrix.os != 'macos-latest' }}
run: bash spec/e2e/e2e_run.sh
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ test_env/deploy
.rvmrc
.ruby-gemset
.ruby-version
Gemfile.lock
pkg/
support/helpers.md
support/modules.md
Expand Down
2 changes: 1 addition & 1 deletion .rspec
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-c --order rand -t ~ssh
-c --order rand --tag ~e2e
Loading

0 comments on commit f5deb4e

Please sign in to comment.