mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-07 23:51:12 +08:00
Use Guthub Actions
This commit is contained in:
parent
58ba6bb966
commit
648e606ed4
15
.github/ci.yml
vendored
Normal file
15
.github/ci.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
name: test
|
||||||
|
on: [push, pull_request]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
ruby: [ '2.5', '2.6', '2.7' ]
|
||||||
|
name: Ruby ${{ matrix.ruby }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: ${{ matrix.ruby }}
|
||||||
|
- run: bundle exec rake test
|
@ -1,7 +0,0 @@
|
|||||||
language: ruby
|
|
||||||
rvm: 2.7
|
|
||||||
script: bundle exec rake test
|
|
||||||
notifications:
|
|
||||||
email:
|
|
||||||
on_success: never
|
|
||||||
on_failure: change
|
|
Loading…
Reference in New Issue
Block a user