GitHub Action to build and install the OpenSCAD CLI.
While this repository is MIT licensed, it includes a Git submodule of the OpenSCAD repository, which uses the GPL-2.0 license.
You should make your own checks to ensure that your usage of this GitHub action is valid within its license agreement.
Supported virtual environments are listed in the test workflow.
on: [push]
jobs:
example:
runs-on: ubuntu-latest
steps:
# Load your repository.
- uses: actions/checkout@v2
# Install this github action.
- uses: neomura/[email protected]
# OpenSCAD is now available on the path.
- run: openscad --help
shell: bash