Skip to content

fix(matrix, util): increase modifier random string length and optimiz… #285

fix(matrix, util): increase modifier random string length and optimiz…

fix(matrix, util): increase modifier random string length and optimiz… #285

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_test:
runs-on: ${{ matrix.os }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
steps:
- name: Checkout frads
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install frads
run: |
pip install .
- name: Run tests
run: |
pip install pytest
pytest test