Skip to content

Commit c630dc0

Browse files
committed
Build and run tests on GitHub-hosted runners
A GitHub-hosted runner is a virtual machine hosted by GitHub with the GitHub Actions runner application installed.
1 parent 0dbff59 commit c630dc0

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ant.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build with Ant
17+
working-directory: ./build
18+
run: ant clean dist
19+
- name: Run tests
20+
working-directory: ./app
21+
run: ant test

0 commit comments

Comments
 (0)