Skip to content

Commit

Permalink
Create qa.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
treagod committed Mar 20, 2024
1 parent 76abde5 commit 23cb3b9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: QA

on:
push:
branches: "*"
pull_request:
branches: "*"
schedule:
- cron: '0 0 * * *'

jobs:
qa:
runs-on: ubuntu-latest
container:
image: crystallang/crystal:1.11.0
steps:
- uses: actions/checkout@v1
- name: Install shards
run: shards install --ignore-crystal-version
- name: Run crystal format tool
run: crystal tool format
- name: Run ameba
run: bin/ameba

0 comments on commit 23cb3b9

Please sign in to comment.