Skip to content

Commit

Permalink
add dashboard workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KenwoodFox committed Mar 24, 2024
1 parent 43f1aee commit d6f8eab
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/dashboard-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Robot Workflow
on:
push:
branches:
- "main"
tags:
- "*"
pull_request:

jobs:
build_dashboard:
name: Build Dashboard
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.12"

- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- id: cache-pipenv
uses: actions/cache@v3
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-pipenv-${{ hashFiles('rio/Pipfile.lock') }}

- name: Install dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: |
make ready
- name: Build
run: |
make build
- name: Stage
run: |
make stage

0 comments on commit d6f8eab

Please sign in to comment.