Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/erg-lang/setup-erg

Set up your GitHub Actions workflow with a specific build of erg
https://github.com/erg-lang/setup-erg

actions erg

Last synced: 11 days ago
JSON representation

Set up your GitHub Actions workflow with a specific build of erg

Awesome Lists containing this project

README

        

# setup-erg

## example

```yaml
permissions:
contents: write

jobs:
example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: erg-lang/[email protected]
with:
build: 'nightly'
- name: Run script
run: |
echo 'print! "hello, world!"' | erg
```

### build (for developers)

```sh
npm install
npm i -g @vercel/ncc
ncc build main.js
```