Started learning GitHub Actions
for Actions Hackathon
on Dev.to
All cases are using the latest
.
08/20/2020
ubuntu-18.04
Python 2.7.17
windows-2019
Python 3.7.8
macos-10.15
Python 2.7.17
The repo is here. https://github.com/koji/github_actions
name: Python version check
on: push
jobs:
python-version-check-on-windows:
name: python version check
runs-on: windows-latest
steps:
- name: ver check
run: python --version
python-version-check-on-linux:
name: python version check
runs-on: ubuntu-latest
steps:
- name: ver check
run: python --version
python-version-check-on-macos:
name: python version check
runs-on: macos-latest
steps:
- name: ver check
run: python --version