8000 chore(deps): update jebel-quant/marimushka action to v0.1.2 · tschm/cradle@7a2e412 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000
8000

chore(deps): update jebel-quant/marimushka action to v0.1.2 #992

chore(deps): update jebel-quant/marimushka action to v0.1.2

chore(deps): update jebel-quant/marimushka action to v0.1.2 #992

Workflow file for this run

# 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
0