summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/python/main.yml
blob: 9df750930e028f66389a0b2f9f43ac9232ed86fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: CI

on: [push]

jobs:
  linter:
    name: "Linting Python Code"

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v1.1.1
      with:
        python-version: 3.7

    - run: python -c "import sys; print(sys.version)"