From cd63d19f033083739367edc3750ef39e594e91f1 Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Sun, 7 Jan 2024 18:42:38 -0800 Subject: [PATCH] Add gsc-tool workflow. --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ba44731 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: main + +on: [push] + +jobs: + main-win: + name: Test on Windows + runs-on: windows-latest + + steps: + - name: Check out files + uses: actions/checkout@main + + - name: Setup gsc-tool + uses: xensik/setup-gsc-tool@v1 + + - name: Compile test script + run: | + gsc-tool.exe comp t6 pc . \ No newline at end of file