Add job to lint code through Ameba in CI

This commit is contained in:
syeopite 2024-06-16 13:11:48 -07:00
parent 1ae14cc224
commit 45fd4a1968
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -124,4 +124,26 @@ jobs:
- name: Test Docker
run: while curl -Isf http://localhost:3000; do sleep 1; done
ameba_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Crystal
uses: crystal-lang/install-crystal@v1.8.0
with:
crystal: latest
- name: Cache Shards
uses: actions/cache@v3
with:
path: ./lib
key: shards-${{ hashFiles('shard.lock') }}
- name: Install Shards
run: shards install
- name: Run Ameba linter
run: bin/ameba