Skip to content

Slash Commands, Message Components, and Interactions #63

Slash Commands, Message Components, and Interactions

Slash Commands, Message Components, and Interactions #63

Workflow file for this run

name: Build
on:
push:
branches:
- master
tags:
- v*
paths-ignore:
- "**.md"
pull_request:
branches:
- master
paths-ignore:
- "**.md"
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: MeilCli/setup-crystal-action@v4
with:
crystal_version: 1.2.1
shards_version: 0.16.0
- name: Install dependencies
run: shards install
- name: Run tests
run: crystal spec
- name: Run crystal tool format
run: crystal tool format --check
- name: Build examples
run: find examples -name "*.cr" | xargs -L 1 crystal build --no-codegen