-
-
Notifications
You must be signed in to change notification settings - Fork 61
35 lines (34 loc) · 926 Bytes
/
upstream.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Latest Versions
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
container: ghcr.io/geocompx/docker:python
defaults:
run:
shell: bash -l {0}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
# Install dependencies with pip and ignoring pinned versions:
pip install pur
# Update requirements.txt with pur:
pur -r requirements.txt --pre osmnx
# Update all packages (could also try --force-reinstall):
# See https://pip.pypa.io/en/stable/development/architecture/upgrade-options/
pip install -U --upgrade-strategy eager -r requirements.txt
- name: Render
run: |
# test code:
quarto render
ls docs