Skip to content

Commit

Permalink
Add Github Actions config
Browse files Browse the repository at this point in the history
Remove Circle CI config
  • Loading branch information
koral-- committed Jan 29, 2022
1 parent 83981d1 commit be2e2ff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 34 deletions.
34 changes: 0 additions & 34 deletions .circleci/config.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Check
on:
[pull_request]
jobs:
unit-tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Java 15
uses: actions/setup-java@v1
with:
java-version: '15'

- name: Run Checks
run: ./gradlew test funcTest check --stacktrace --no-daemon

- name: Stop Gradle
run: ./gradlew --stop

0 comments on commit be2e2ff

Please sign in to comment.