Skip to content

Commit

Permalink
ci: add python3.10, macos and windows env (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
Helias committed Nov 5, 2023
1 parent 7046eb7 commit 9c27a57
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/telegram-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
- name: Install dependencies for requirements and testing
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 9c27a57

Please sign in to comment.