Skip to content

Bump docker/build-push-action from 5.4.0 to 6.0.1 #12

Bump docker/build-push-action from 5.4.0 to 6.0.1

Bump docker/build-push-action from 5.4.0 to 6.0.1 #12

Workflow file for this run

on:
push:
pull_request:
branches: [main]
name: Run tests
jobs:
test:
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
# Skipping format check and linting for the moment being.
# - name: Lint
# run: ./bin/ameba
# - name: Format
# run: crystal tool format --check
- name: Run tests
run: crystal spec --order=random
- name: Build
run: shards build