Skip to content

fix create path

fix create path #78

Workflow file for this run

name: Test Code with Pip
on:
push:
branches:
- "**"
- "!gh-pages"
pull_request:
branches:
- main
workflow_dispatch:
inputs:
name:
description: 'Test It'
required: false
default: 'I Just wanna test it'
jobs:
build:
strategy:
matrix:
python-version: ["3.9"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install .
- name: pre-commit
uses: pre-commit/[email protected]
- name: Test with pytest
run: pytest