mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-04-27 14:57:44 +00:00
Update GitHub workflows
This commit is contained in:
parent
9f9d59ccee
commit
98a85f18d6
2 changed files with 4 additions and 5 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
tests:
|
tests:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ruby: [ '2.6', '2.7', '3.0' ]
|
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
|
||||||
|
|
||||||
name: Tests - Ruby ${{ matrix.ruby }}
|
name: Tests - Ruby ${{ matrix.ruby }}
|
||||||
# Set the type of machine to run on
|
# Set the type of machine to run on
|
||||||
|
|
@ -19,9 +19,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
# Checks out a copy of your repository on the ubuntu-latest machine
|
# Checks out a copy of your repository on the ubuntu-latest machine
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: vendor/bundle
|
path: vendor/bundle
|
||||||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
||||||
|
|
@ -42,4 +42,3 @@ jobs:
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
bundle exec rake test
|
bundle exec rake test
|
||||||
|
|
||||||
|
|
|
||||||
2
.github/workflows/linter.yml
vendored
2
.github/workflows/linter.yml
vendored
|
|
@ -36,7 +36,7 @@ jobs:
|
||||||
# Checkout the code base #
|
# Checkout the code base #
|
||||||
##########################
|
##########################
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
# Full git history is needed to get a proper list of changed files within `super-linter`
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue