Skip to content

Commit

Permalink
chore: Move CI from travis to GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
quodlibetor committed Jun 19, 2024
1 parent 4a4a99e commit 1c90007
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 15 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
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: Install PostgreSQL
run: sudo apt-get install postgresql
- name: Build and test
run: cargo nextest run --features diesel-uuid
env:
PG_DATABASE_URL: postgres://postgres:postgres@localhost/postgres
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 1c90007

Please sign in to comment.