Skip to content

Commit

Permalink
Merge pull request #235 from alvasw/enable_ci
Browse files Browse the repository at this point in the history
Github Actions: Enable CI
  • Loading branch information
chimp1984 committed Apr 12, 2022
2 parents 33605cf + f5620d7 commit 2a66b7a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Bisq 2

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

permissions:
contents: read

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]

name: Building on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3.0.0

- name: Setup Java JDK
uses: actions/setup-java@v3.1.1
with:
java-version: '16'
distribution: 'zulu'

- name: Gradle Build Action
uses: gradle/gradle-build-action@v2.1.5

- name: Execute Gradle build
run: ./gradlew build

0 comments on commit 2a66b7a

Please sign in to comment.