Odoo18-Base/.github/workflows/build.yml
2025-01-09 16:37:59 +07:00

18 lines
407 B
YAML

name: GitHub Actions Example
on:
push:
branches: [ main ]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
architecture: 'x64'
- name: check python version
run: python --version