Skip to content

Commit

Permalink
Use github actions instead of circleci
Browse files Browse the repository at this point in the history
Signed-off-by: Sahil Kang <[email protected]>
  • Loading branch information
SahilKang committed Nov 25, 2024
1 parent cd47e1a commit a4a1703
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .circleci/config.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on:
push:
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: docker compose
run: |
docker-compose -f ./test/docker-compose.test.yml \
up --build --abort-on-container-exit test

0 comments on commit a4a1703

Please sign in to comment.