Skip to content

Commit 053fa47

Browse files
authored
Merge pull request #1762 from Fryguy/github_actions
Switch to GitHub Actions
2 parents 00e70ca + 1539cb3 commit 053fa47

File tree

2 files changed

+23
-24
lines changed

2 files changed

+23
-24
lines changed

.github/workflows/ci.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
ci:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Set up Node
11+
uses: actions/setup-node@v2
12+
with:
13+
node-version: 12
14+
cache: yarn
15+
registry-url: https://npm.manageiq.org/
16+
- name: Prepare tests
17+
run: bin/setup
18+
- name: Run tests
19+
run: yarn run test
20+
- name: Report code coverage
21+
if: ${{ github.ref == 'refs/heads/master' }}
22+
continue-on-error: true
23+
run: cat reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js

.travis.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)