Improve enum naming (#43) #16
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: Spec | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
crystal: | |
- 1.6.2 | |
- 1.5.1 | |
- 1.4.1 | |
- 1.3.2 | |
- 1.2.0 | |
- 1.1.0 | |
- 1.0.0 | |
container: | |
image: crystallang/crystal:${{ matrix.crystal }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
- name: Install dependencies and build codegen | |
run: shards build | |
- name: Run crystal spec | |
run: make spec |