Skip to content

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 dd5e66f commit 51b054b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 104 deletions.
84 changes: 0 additions & 84 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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
with:
validate-wrappers: true
- run: ./gradlew build
20 changes: 0 additions & 20 deletions .github/workflows/gradle-wrapper-validation.yml

This file was deleted.

0 comments on commit 51b054b

Please sign in to comment.