18 lines
397 B
YAML
18 lines
397 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
- run: python3 -m venv .venv
|
|
- run: source .venv/bin/activate
|
|
- run: which python
|
|
# - run: pip install git+https://git.jmsgrogan.com/jgrogan/dialann.git
|
|
|