Skip to content

Bump slab from 0.4.10 to 0.4.11 #73

Bump slab from 0.4.10 to 0.4.11

Bump slab from 0.4.10 to 0.4.11 #73

Workflow file for this run

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