Imageruler revamp (#30) #9
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 13 * * 1" # Every Monday at 9AM EST | |
jobs: | |
example: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
cache-dependency-path: pyproject.toml | |
- name: Setup environment | |
run: | | |
python -m pip install --upgrade pip | |
pip install ".[tests,dev,examples]" | |
- name: Run program on reference design | |
run: | | |
python imageruler reference_designs/Rasmus70nm.csv |