diff options
| author | mo khan <mo.khan@gmail.com> | 2019-12-27 20:32:56 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2019-12-27 20:32:56 -0700 |
| commit | d7086131e06ce95e93f63cc0abbc423d7fbc414d (patch) | |
| tree | 892fa5e639902e3fb6bc78ad22b079177795789b /.github/workflows/ci.yml | |
| parent | 30570d0fd4bf078800a7d2748df954009e3086b9 (diff) | |
Fix badge path
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8933ef6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: ci +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Set up Ruby 2.6 + uses: actions/setup-ruby@v1 + with: + ruby-version: 2.6.x + - name: Run cibuild + run: bin/cibuild |
