Run crystal tool format
to format source code
#49
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: crystal-tds | |
on: [push] | |
jobs: | |
crystal-spec: | |
runs-on: ubuntu-latest | |
container: | |
image: crystallang/crystal:1.10.1-alpine-build | |
services: | |
mssql: | |
image: mcr.microsoft.com/mssql/server | |
ports: [ '1433:1433' ] | |
env: | |
ACCEPT_EULA: Y | |
SA_PASSWORD: My-Secret-Pass | |
MSSQL_PID: Express | |
steps: | |
- uses: actions/checkout@v4 | |
- name: crystal spec | |
run: | | |
shards install | |
crystal spec | |
env: | |
MSSQL_HOST: mssql |