Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from masa-iwasaki/add_test_for_ubuntu_xenial
Browse files Browse the repository at this point in the history
Add more coverages for Ubuntu & Ruby
  • Loading branch information
masa-iwasaki authored Jan 1, 2020
2 parents 30cdc41 + 4c1024e commit 3c40919
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Linux'
name: 'Ubuntu 16.04'

on:
pull_request:
Expand All @@ -9,7 +9,7 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@master

Expand All @@ -20,4 +20,6 @@ jobs:
- run: |
eval "$(rbenv init -)"
rbenv install 2.5.7
rbenv install 2.6.5
rbenv install 2.7.0
24 changes: 24 additions & 0 deletions .github/workflows/ubuntu1804.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Ubuntu 18.04'

on:
pull_request:
push:
branches:
- master
- 'releases/*'

jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master

- run: npm ci
- run: npm run build
- run: npm test
- uses: ./
- run: |
eval "$(rbenv init -)"
rbenv install 2.5.7
rbenv install 2.6.5
rbenv install 2.7.0

0 comments on commit 3c40919

Please sign in to comment.