From 9589d99610cb578e965d1ae24591f8a2ad232a32 Mon Sep 17 00:00:00 2001 From: Simon Pribylski Date: Wed, 2 Oct 2024 13:57:29 +0000 Subject: [PATCH] Add .github/workflows/gdmc.yml --- .github/workflows/gdmc.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/gdmc.yml diff --git a/.github/workflows/gdmc.yml b/.github/workflows/gdmc.yml new file mode 100644 index 0000000..b8e1358 --- /dev/null +++ b/.github/workflows/gdmc.yml @@ -0,0 +1,17 @@ +name: Linux arm64 +run-name: Run genaration + +on: [push] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + + - name: Pip + run: pip install -r requirements.txt + + - name: Run + run: python3 main.py \ No newline at end of file