Add specs for PrivacyPolicyCommand; bump version #28
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: Private Parlor XT CI | |
on: | |
push: | |
branches: [ "master" ] | |
paths: | |
- 'src/**' | |
- 'shard.yml' | |
- 'spec/**' | |
pull_request: | |
branches: [ "master" ] | |
paths: | |
- 'src/**' | |
- 'shard.yml' | |
- 'spec/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: alpine:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
apk add --update --upgrade --no-cache --force-overwrite build-base yaml-static sqlite-static sqlite-dev libxml2-dev libxml2-static icu-static zlib-static xz-dev xz-static openssl-dev openssl-libs-static pcre-dev gc-dev libevent-static crystal shards | |
shards install | |
- name: Run tests | |
run: crystal spec -v --order random --error-trace |