forked from WizardComputer/action-erblint
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (25 loc) · 805 Bytes
/
ci.yml
File metadata and controls
25 lines (25 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: CI
on: [pull_request]
jobs:
test-skip-install-and-use-bundler:
name: runner / erb_lint
runs-on: ubuntu-latest
defaults:
run:
working-directory: test/using_bundler
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/test/using_bundler/Gemfile
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ruby/setup-ruby@922ebc4c5262cd14e07bb0e1db020984b6c064fe # v1.226.0
with:
ruby-version: 3.4
bundler-cache: true
- name: erb_lint with skip install and using bundler
uses: ./
with:
github_token: ${{ secrets.github_token }}
skip_install: 'true'
use_bundler: 'true'
- run: |
test "$(bundle exec erb_lint --version)" == "0.9.0"