github.com/nektos/act@v0.2.63/pkg/runner/testdata/python/main.yml (about) 1 name: CI 2 3 on: [push] 4 5 jobs: 6 linter: 7 name: "Linting Python Code" 8 9 runs-on: ubuntu-latest 10 11 steps: 12 - uses: actions/checkout@v2 13 - uses: actions/setup-python@v1.1.1 14 with: 15 python-version: 3.7 16 17 - run: python -c "import sys; print(sys.version)"