Official GitHub Actions for the tx3 toolchain.
Install the tx3 toolchain in your GitHub Actions workflow.
- uses: tx3-lang/actions/setup@v1| Input | Description | Default |
|---|---|---|
channel |
Toolchain channel (stable, nightly, beta) |
stable |
version |
Specific toolchain release tag | latest |
github-token |
GitHub token for API requests | github.token |
| Output | Description |
|---|---|
tx3-version |
The installed tx3c compiler version |
bin-path |
Path to the installed toolchain binaries |
Basic usage (latest stable):
steps:
- uses: actions/checkout@v4
- uses: tx3-lang/actions/setup@v1
- run: tx3c --versionSpecific channel:
steps:
- uses: actions/checkout@v4
- uses: tx3-lang/actions/setup@v1
with:
channel: nightlySpecific version:
steps:
- uses: actions/checkout@v4
- uses: tx3-lang/actions/setup@v1
with:
version: "2025.03.01"