Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nzbr/vlang-action
A GitHub action that builds a V project
https://github.com/nzbr/vlang-action
actions ci compiler github-actions v vlang
Last synced: 3 months ago
JSON representation
A GitHub action that builds a V project
- Host: GitHub
- URL: https://github.com/nzbr/vlang-action
- Owner: nzbr
- License: isc
- Created: 2019-10-27T23:42:14.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T08:46:16.000Z (about 1 year ago)
- Last Synced: 2024-03-15T11:50:17.387Z (10 months ago)
- Topics: actions, ci, compiler, github-actions, v, vlang
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# V docker action
This action compiles a V project
## Inputs
### `file` (optional)
The file to build (defaults to `.`)
### `args` (optional)
Additional arguments for the compiler
### `compiler` (optional)
Version of the V compiler to use. This can be anything you can pass to `git checkout`.
(commit hash, tag or branch)
Defaults to `master`## Example usage
```yaml
uses: nzbr/vlang-action@v2
with:
file: "program.v"
```