Skip to content

wip(CI) start adding CI/CD #7

wip(CI) start adding CI/CD

wip(CI) start adding CI/CD #7

Workflow file for this run

name: ContinuousIntegration
on:
push:
branches:
- "main"
- "add_CI"
pull_request:
branches:
- "main"
- "add_CI"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8.13"
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.8.13
auto-activate-base: false
- name: Install and test
shell: bash -l {0}
run: |
conda create -n test_env python=3.8.13 libgdal=3.5.2 -c conda-forge -c defaults -y
conda activate test_env
echo "hello"