mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-08-11 17:50:58 +00:00
parent
c571efd481
commit
b05d2fc784
3 changed files with 19 additions and 2 deletions
17
act/runner/testdata/python/main.yml
vendored
Normal file
17
act/runner/testdata/python/main.yml
vendored
Normal file
|
@ -0,0 +1,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)"
|
Loading…
Add table
Add a link
Reference in a new issue