Skip to content

feat(ci): add lates=auto to docker #39

feat(ci): add lates=auto to docker

feat(ci): add lates=auto to docker #39

Workflow file for this run

name: Specs & Lint
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v4
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Install shards
run: shards install
- name: Run tests
run: make test_all
- name: Build
run: make debug
- name: Check formatting
run: crystal tool format; git diff --exit-code