29 lines
517 B
YAML
29 lines
517 B
YAML
name: Test CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-24.04
|
|
# container:
|
|
# image: ghcr.io/mxmehl/python-tests-image:3.12
|
|
# env:
|
|
# RUNNER_TOOL_CACHE: /toolcache
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
- run: python --version
|
|
|
|
# test2:
|
|
# runs-on: ubuntu-24.04
|
|
# steps:
|
|
# - run: pwd
|
|
# - run: whoami
|