17 lines
365 B
YAML
17 lines
365 B
YAML
name: GitHub Actions Example
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
strategy:
|
|
matrix:
|
|
python:
|
|
- 3.12.7
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.head_ref }}
|
|
- name: get commit hash
|
|
run: pyenv virtualenv "$(git rev-parse --short "$GITHUB_SHA")" |