mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-09-26 00:38:08 +08:00
Use Guthub Actions
This commit is contained in:
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
|
|
Reference in New Issue
Block a user