Skip to content

chore: Move CI from travis to GH Actions #3

chore: Move CI from travis to GH Actions

chore: Move CI from travis to GH Actions #3

Workflow file for this run

name: Push
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: [stable, beta, nightly]
services:
postgres:
image: postgres:16.3
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: moonrepo/setup-rust@v1
with:
channel: ${{ matrix.rust-version }}
bins: cargo-nextest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: cargo build --features diesel-uuid
- name: Build and test
run: cargo nextest run --features diesel-uuid
env:
PG_DATABASE_URL: postgres://postgres:postgres@localhost/postgres