Skip to content

cpondoc pushed code

cpondoc pushed code #4

Workflow file for this run

name: Automated Building and Testing
run-name: ${{ github.actor }} pushed code
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- run: echo "Start automated building and testing!"
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- run: python -m pip install –-user –-upgrade setuptools wheel
- run: cd ${{ github.workspace }}
- run: cd wildfire_evac
- run: python setup.py sdist
- run: python -m pip install -e .