Update RFD900X Holder.PrjPcb #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
path: repo | |
- name: Checkout pcb-versions repo | |
uses: actions/checkout@v3 | |
with: | |
repository: RaccoonLabHardware/pcb-versions | |
token: ${{ secrets.ACCESS_TOKEN }} | |
path: repo/pcb-versions | |
- name: Basic Altium Output Files, BOM And Version Resistors Checkout | |
run: | | |
cd repo && ls && pip install openpyxl && python pcb-versions/tests.py | |
# - name: Commit & push changes | |
# run: | | |
# cd repo/pcb-versions | |
# git config --global user.name "sainquake-test" | |
# git config --global user.email "[email protected]" | |
# git add -A | |
# git commit -am "Update submodules" | |
# git push origin master |