Skip to content

Bump versions of actions/checkout and actions/setup-python #40

Bump versions of actions/checkout and actions/setup-python

Bump versions of actions/checkout and actions/setup-python #40

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .[opensimplex]
- name: Run tests
run: |
python -m pytest