26 lines
466 B
YAML
26 lines
466 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repo
|
|
run: |
|
|
git clone https://${{ gitea.server }}/${{ gitea.repository }} repo
|
|
cd repo
|
|
git checkout ${{ gitea.sha }}
|
|
|
|
- name: Check files
|
|
run: |
|
|
cd repo
|
|
ls -la
|
|
|
|
- name: Verify Python
|
|
run: |
|
|
python3 --version
|
|
|
|
- name: Done
|
|
run: echo "CI completed"
|