Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
annotate
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
annotate
Commits
05ee2167
Unverified
Commit
05ee2167
authored
Sep 26, 2019
by
Cuong Tran
Committed by
GitHub
Sep 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Integrate Github actions for CI (#619)
parent
c710caac
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
ci.yml
.github/workflows/ci.yml
+28
-0
milestone.yml
.github/workflows/milestone.yml
+12
-0
No files found.
.github/workflows/ci.yml
0 → 100644
View file @
05ee2167
name
:
CI
on
:
[
push
]
jobs
:
test
:
runs-on
:
ubuntu-latest
strategy
:
matrix
:
ruby
:
-
2.3.x
-
2.4.x
-
2.6.x
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v1
-
name
:
Setup System
run
:
|
sudo apt-get install libsqlite3-dev
-
name
:
Setup Ruby
uses
:
actions/setup-ruby@v1
with
:
ruby-version
:
${{ matrix.ruby }}
-
name
:
Bundle
run
:
|
gem update --system
gem update bundler
bundle install --jobs 4 --retry 3
-
name
:
Test
run
:
bundle exec rubocop && bundle exec rspec
.github/workflows/milestone.yml
0 → 100644
View file @
05ee2167
on
:
milestone
name
:
On Milestone
jobs
:
createReleaseNotes
:
name
:
Create Release Notes
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@master
-
name
:
Create Release Notes
uses
:
mmornati/release-notes-generator-action@master
env
:
GITHUB_TOKEN
:
${{ secrets.GITHUB_TOKEN }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment