Create main.yml

This commit is contained in:
Klemek
2021-02-03 16:17:35 +01:00
committed by GitHub
parent f7367dc2e5
commit 40425ca36d
+29
View File
@@ -0,0 +1,29 @@
name: Generate usinenX.klc
on:
push:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Build
run: python ./build.py
- name: Commit and Push
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m "automated build"
git push