Removed file_creator_helper
and moved its methods into the init
c…
#67
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: CI | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {os: ubuntu-latest, crystal: latest} | |
- {os: macos-latest, crystal: latest} | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: oprypin/install-crystal@v1 | |
with: | |
crystal: ${{matrix.crystal}} | |
- uses: actions/checkout@v2 | |
- run: shards install | |
- run: crystal spec src/*.cr |