paper: Update abstract #229
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: Run Model | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 6 * * 1' | |
jobs: | |
run-model: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
sparse-checkout: | | |
data | |
model | |
network/graphs | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install uv | |
run: pip install uv | |
- name: Install dependencies | |
run: uv pip install --system --pre mesa numpy pandas geopandas networkx shapely osmnx pyarrow | |
- name: Install uxsim | |
run: uv pip install --system git+https://github.com/EwoutH/uxsim@time_bin_mem_opt#egg=uxsim | |
- name: Run model script | |
working-directory: model | |
run: python model.py |