Skip to content

Commit

Permalink
Fix errors in ci yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdabbas committed Oct 30, 2023
1 parent e1d0a14 commit 6f56c86
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
name: CI
name: Python package CI

on: [push, pull_request]
on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", 3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name Install Tox and other packages
- name: Install tox and any other packages
run: pip install tox
- name: Run Tox
run: tox
- name: Run tox
run: tox -e py

0 comments on commit 6f56c86

Please sign in to comment.