Skip to content

CI for combiner tool #10

CI for combiner tool

CI for combiner tool #10

name: CI for combiner tool
on:
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: Build python
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- name: Print a greeting
env:
MY_VAR: Hi there! My name is
FIRST_NAME: Tu
LAST_NAME: Ngo
run: |
echo $MY_VAR $FIRST_NAME $LAST_NAME.
- name: List
run: ls -la
- name: Check syntax errors
run: python -m py_compile .\combiner\main.py