Skip to content

Commit

Permalink
Migrate from Travis CI to Github Actions
Browse files Browse the repository at this point in the history
Puppet is closing its Travis CI account. Migrate the travis workflow
to github actions.
  • Loading branch information
e-gris committed Mar 14, 2023
1 parent 92ef8f4 commit 84d3819
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rubocop.yml
@@ -0,0 +1,21 @@
name: Test

on: [push, pull_request]

jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.7.7' ]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rake default task
run: |
bundle install --jobs=3 --retry=3
bundle exec rake
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 84d3819

Please sign in to comment.