Skip to content

Commit

Permalink
Merge pull request #113 from denisdefreyne/denis/github-actions
Browse files Browse the repository at this point in the history
Set up GitHub workflow
  • Loading branch information
denisdefreyne authored Nov 17, 2023
2 parents f8e7c85 + 67231b0 commit 49a952e
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 9 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Nanoc

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2"]

steps:
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}

- uses: actions/cache@v3
with:
path: vendor/bundle
key: bundler-b-${{ runner.os }}-${{ matrix.ruby-version }}-${{ hashFiles('Gemfile') }}

- run: |
bundle config set --local path 'vendor/bundle'
bundle install --jobs "$(nproc)"
- name: test_style
if: ${{ matrix.ruby-version == '3.1' }}
run: bundle exec rake test_style

- name: test_unit
run: bundle exec rake test_unit
timeout-minutes: 3
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 49a952e

Please sign in to comment.