Skip to content

Merge pull request #93 from s3alfisc/dependabot/pip/certifi-2023.7.22 #44

Merge pull request #93 from s3alfisc/dependabot/pip/certifi-2023.7.22

Merge pull request #93 from s3alfisc/dependabot/pip/certifi-2023.7.22 #44

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.9"]
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: '4.2.0'
- name: install fwildclusterboot
run: Rscript -e 'install.packages("fwildclusterboot", repos="https://cloud.r-project.org")'
shell: bash
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install
run: |
pip install -e .
pip install -r requirements_test.txt
- name: Run tests
run: pytest