11 lines
178 B
YAML
11 lines
178 B
YAML
name: test_action
|
|
run-name: this is a gitea action test
|
|
on: [push]
|
|
|
|
jobs:
|
|
Python3:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "Hello World"
|
|
- run: python -V
|