Add support for sending multiple embeds in a single message #64
This file contains 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: 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 |