diff --git a/.github/workflows/test-magic.yaml b/.github/workflows/test-magic.yaml new file mode 100644 index 0000000..de505a3 --- /dev/null +++ b/.github/workflows/test-magic.yaml @@ -0,0 +1,24 @@ +name: Check All + +on: [push, pull_request] + +jobs: + build-firmware: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + with: + submodules: recursive + + - name: Print Python Version + run: | + python3.8 --version + + - name: Step 2 Copy Gerbers + run: | + bash step2_copy.sh + + - name: Step 3 Create Board + run: | + bash step3_create_board.sh diff --git a/hellen-one b/hellen-one index 8024162..4926128 160000 --- a/hellen-one +++ b/hellen-one @@ -1 +1 @@ -Subproject commit 8024162d1d9963e9ef1200ac4bfcfc9189046d0e +Subproject commit 4926128c4ab4572346e1ebff62c4ce5ae4e94a95 diff --git a/step2_copy_alphax_2ch.sh b/step2_copy.sh similarity index 100% rename from step2_copy_alphax_2ch.sh rename to step2_copy.sh diff --git a/step3_create_alphax_2ch.sh b/step3_create_board.sh similarity index 100% rename from step3_create_alphax_2ch.sh rename to step3_create_board.sh