From 22b7e29da504f956520b22aeefc00f2cb76174ae Mon Sep 17 00:00:00 2001 From: Bob Date: Mon, 2 Aug 2021 17:19:57 -0400 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f097e54..0763c01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,12 +19,16 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Render and build OpenSCAD project - uses: flat35hd99/eval-openscad@v0.2 - with: - command: | - echo "where does this even go" - openscad -o "tests/test.stl" "tests/test.scad" + # - name: Render and build OpenSCAD project + # uses: flat35hd99/eval-openscad@v0.2 + # with: + # command: | + # echo "where does this even go" + # openscad -o "tests/test.stl" "tests/test.scad" + - name: Install openscad + run: sudo apt-get install openscad + - run: which openscad + - run: 'openscad -o "tests/test.stl" "tests/test.scad"' - run: | git config --global user.name 'KeyV2 GHA Bot' git config --global user.email 'keyv2-gha-bot@users.noreply.github.com'