Skip to content

Commit

Permalink
Conducting basic data parsing
Browse files Browse the repository at this point in the history
---
- fixing type issue
- intergrating pytest
  • Loading branch information
g7xu committed Aug 19, 2024
1 parent 311978c commit c4028a6
Show file tree
Hide file tree
Showing 4 changed files with 1,298 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI

on:
push:
pull_request:

jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12-dev"
- "pypy-3.7"
- "pypy-3.8"
- "pypy-3.9"

name: Test
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest
Loading

0 comments on commit c4028a6

Please sign in to comment.