Skip to content

Commit c49667c

Browse files
authored
Merge pull request #25 from target/migrating-to-yaml-syntax
converted main.workflow to Actions V2 yml files
2 parents 8875907 + 5bfaecb commit c49667c

3 files changed

Lines changed: 26 additions & 16 deletions

File tree

.github/main.workflow

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/pull_request.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: pull_request
2+
name: PullRequest
3+
jobs:
4+
compileData-validator:
5+
name: compile data-validator
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: compile data-validator
10+
uses: docker://amazoncorretto:8
11+
with:
12+
entrypoint: bin/sbt
13+
args: clean compile test package

.github/workflows/push.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: push
2+
name: Push
3+
jobs:
4+
compileData-validator:
5+
name: compile data-validator
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: compile data-validator
10+
uses: docker://amazoncorretto:8
11+
with:
12+
entrypoint: bin/sbt
13+
args: clean compile test package

0 commit comments

Comments
 (0)