Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Migrate from CircleCI to GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Jul 27, 2024
1 parent c61e280 commit 41f2f1d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 84 deletions.
84 changes: 0 additions & 84 deletions .circleci/config.yml

This file was deleted.

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

on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:

jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: gradle/actions/setup-gradle@v3
- run: ./gradlew build

0 comments on commit 41f2f1d

Please sign in to comment.