chore: bump to v0.3.0 #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Latch CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: "*" | |
| jobs: | |
| specs: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| crystal_version: [latest] | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: crystal-lang/install-crystal@v1 | |
| with: | |
| crystal: ${{ matrix.crystal_version }} | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y imagemagick libvips-tools ffmpeg | |
| - name: Install shards | |
| run: shards install | |
| - name: Run tests | |
| run: crystal spec | |
| - name: Check format | |
| run: crystal tool format --check | |
| - name: Lint | |
| run: ./bin/ameba |