diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..63b002f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,35 @@ +name: CI + +on: + push: + pull_request: + branches: [master] + schedule: + - cron: '0 6 * * 1' # Every monday 6 AM + +jobs: + test: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + crystal: [1.0.0, latest, nightly] + runs-on: ${{ matrix.os }} + steps: + - name: Install Crystal + uses: crystal-lang/install-crystal@v1 + with: + crystal: ${{ matrix.crystal }} + + - name: Download source + uses: actions/checkout@v2 + + - name: Install shards + run: shards install + + - name: Run specs + run: crystal spec + + - name: Check formatting + run: crystal tool format; git diff --exit-code + if: matrix.crystal == 'latest' && matrix.os == 'ubuntu-latest' diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index dfd532a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,2 +0,0 @@ -language: crystal -sudo: false