chore(deps): update jebel-quant/marimushka action to v0.1.2 #992
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions workflow for continuous integration | |
# This workflow runs tests on multiple operating systems and Python versions | |
name: "CI" | |
on: | |
push: # Trigger on push events | |
permissions: | |
contents: read # Read-only access to repository contents | |
#env: | |
# UV_SYSTEM_PYTHON: 1 | |
jobs: | |
test: | |
# The type of runner that the job will run on | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Test on multiple operating systems and Python versions | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
python-version: [ '3.10', '3.11', '3.12', '3.13' ] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Step 1: Checkout the repository code | |
- name: Checkout ${{ github.repository }} | |
uses: actions/checkout@v4 | |
# Step 2: Build the virtual environment with the specified Python version | |
- name: "Build the virtual environment for ${{ github.repository }}" | |
uses: ./actions/environment | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Step 3: Run the tests | |
- uses: ./actions/test | |
with: | |
tests-folder: src/tests # Path to the tests directory |