Bump slab from 0.4.10 to 0.4.11 #73
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: build | |
| on: [push] | |
| jobs: | |
| ubuntu: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:11-alpine | |
| env: | |
| POSTGRES_USER: user | |
| POSTGRES_PASSWORD: pass | |
| POSTGRES_DB: test_db | |
| ports: | |
| - 5444:5432 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - run: cargo build | |
| - run: cargo test | |
| macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build | |
| run: cargo build | |
| # Windows does not have tests ( do not know at the moment how to test postgres ) | |
| windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build | |
| run: cargo build |