testing actions for java

This commit is contained in:
Jonathan Shook 2020-03-04 11:26:22 -06:00 committed by GitHub
parent 3b3a54dda0
commit e7e0cc9bab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: CI
on:
push:
branches:
- testbranch
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '13'
java-package: jdk
architecture: x64
- run: java -version
# - name: Run a one-line script
# run: echo Hello, world!
# - name: Run a multi-line script
# run: |
# echo Add other actions to build,
# echo test, and deploy your project.