Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliu2016 committed Jan 6, 2020
1 parent ddcdae1 commit 6092666
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: "11"
- name: Gradle Build
run: |
chmod +x ./gradlew
./gradlew assembleDebug
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,30 @@ val exampleBoardfile = Boardfile(
)
)
),
TemplateScreen(
"Evan", listOf(
listOf(
TemplateField("wheel", V5FieldType.Switch),
TemplateField("defending", V5FieldType.Switch),
TemplateField("resisting", V5FieldType.Switch)
),
listOf(
TemplateField("low", V5FieldType.Button),
TemplateField("inner", V5FieldType.Button),
TemplateField("outer", V5FieldType.Button)
),
listOf(
TemplateField("low_miss", V5FieldType.Button),
TemplateField("high_miss", V5FieldType.Button)
),
listOf(
TemplateField(
"filed_area", V5FieldType.Toggle,
listOf("Cross", "Far", "Init", "Target")
)
)
)
),
TemplateScreen(
"Endgame", listOf(
listOf(
Expand Down

0 comments on commit 6092666

Please sign in to comment.