diff options
| author | mo khan <mo@mokhan.ca> | 2021-06-29 14:57:00 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2021-06-29 14:57:00 -0600 |
| commit | 85c1dd4dee7f199dcd2f41f71bdb7f05dfb99c5a (patch) | |
| tree | 530943e623078cb3622ad0f9e2a94c4d0611d31f | |
| parent | c33ae89ce7ea827dc681598038271400412dc644 (diff) | |
chore: add ci job
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..49bc6a0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,10 @@ +name: Continuous Integration +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: ruby/setup-ruby@v1 + - run: ./bin/setup + - run: ./bin/rails test |
