Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jaynetics committed Oct 11, 2023
1 parent ae9ac50 commit e77eeef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gouteur.yml
Expand Up @@ -7,14 +7,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Prepare
bundler-cache: true
- name: Install and run ragel
run: |
bundle install --jobs 4
sudo apt-get install -yqq ragel
bundle exec rake ragel:rb
- name: Test
Expand Down
16 changes: 3 additions & 13 deletions .github/workflows/lint.yml
Expand Up @@ -9,22 +9,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Cache gems
uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-rubocop-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-rubocop-
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
ruby-version: 3.2
bundler-cache: true
# Create a dummy scanner.rb so we don't need Ragel but require statements work
- name: Stub scanner.rb
run: 'echo "class Regexp::Scanner; end" > lib/regexp_parser/scanner.rb'
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/tests.yml
Expand Up @@ -15,14 +15,13 @@ jobs:
ruby: [ '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', 'ruby-head' ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle install --jobs 4
sudo apt-get install -yqq ragel
bundler-cache: true
- name: Install ragel
run: sudo apt-get install -yqq ragel
- name: Test with Rake
run: bundle exec rake test:full

0 comments on commit e77eeef

Please sign in to comment.