Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/erg-lang/setup-erg
- Owner: erg-lang
- License: mit
- Created: 2022-10-15T17:57:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-20T17:36:22.000Z (9 months ago)
- Last Synced: 2024-10-27T13:28:41.818Z (20 days ago)
- Topics: actions, erg
- Language: JavaScript
- Homepage: https://github.com/marketplace/actions/setup-erg-environment
- Size: 635 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-erg
## example
```yaml
permissions:
contents: writejobs:
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
```