Files
examples/.github/workflows/build.yml
sudo-rsingh fa1d99e5cb
Some checks failed
/ build (push) Failing after 2s
Update .github/workflows/build.yml
2026-05-14 17:15:25 +05:30

12 lines
321 B
YAML

# .gitea/workflows/build.yml
on: [push]
jobs:
build:
runs-on: ubuntu-latest # picks ubuntu:latest via runner labels
# OR override with any image:
container:
image: ubuntu-latest # runner spawns this exact image
steps:
- uses: actions/checkout@v4
- run: python --version