Skip to content

Commit

Permalink
Merge branch 'master' into colorama
Browse files Browse the repository at this point in the history
  • Loading branch information
manrajgrover authored Jun 16, 2024
2 parents 3b50f15 + b76fa94 commit 6b9eab0
Show file tree
Hide file tree
Showing 15 changed files with 459 additions and 375 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: halo

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
test:
name: Test with ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
os:
- ubuntu-latest
- macos-latest
- windows-latest

steps:
- uses: actions/checkout@v4
- name: Setup python for test ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
pip --version
python -m pip install --upgrade tox tox-gh>=1.2
tox --version
- name: Run tox targets for ${{ matrix.python-version }}
run: |
python -m tox
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ cover/

# tests
tests/*.txt
.pytest_cache

# OS-specific files
.DS_Store
Expand Down
Loading

0 comments on commit 6b9eab0

Please sign in to comment.