-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (57 loc) · 1.91 KB
/
windows-build.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# This workflow will install Windows dependencies, run tests and lint with Python 3.9
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: ["109-develop-windows-os-ci"]
jobs:
build:
runs-on: "windows-latest"
shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
# - name: Install geos # required for cartopy installation
# uses: ConorMacBride/install-package@v1
# with:
# choco: geos
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -r requirements.txt
- name: Install java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
# - name: Check Java Install
# run: |
# java --version
# - name: Install Osmosis
# run: |
# curl https://github.com/openstreetmap/osmosis/latest/download/osmosis-0.48.3.zip -L -o MyFilename.zip
# tree .
- name: Download Zip Folder
run: |
curl -o example.zip https://github.com/openstreetmap/osmosis/releases/download/0.48.3/osmosis-0.48.3.zip
powershell -command "Expand-Archive -Path ./example.zip -DestinationPath ./UnzippedFolder"
# uses: ConorMacBride/install-package@v1
# - name: Run Integration Tests
# run: |
# pytest -m runinteg --runinteg # run only those tests marked runinteg
# - name: pre-commit
# run: |
# pre-commit install
# pre-commit run --all-files
# - name: Test with pytest
# run: |
# pytest
# - name: Generate Report
# run: |
# coverage run -m pytest
# coverage xml