Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified with new name #6

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
28 changes: 19 additions & 9 deletions .github/workflows/python-installation.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
name: Installing Python

on: [push]

'on':
- push
jobs:
build:
runs-on: ubuntu-latest
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-12

py-version:
- 3.9
- 3.8
- 3.7

steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7

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