multi-lang-github-action
v1.0.0
Published
I created an github action workflow for 4 language programing: Rust, Go, Python, Nodejs
Downloads
2
Readme
Multiple Language Github Action Workflow
I created an github action workflow for 4 language programing: Rust, Go, Python, Nodejs
Tutorial
- Create github action file.
- Use workflow: trivonhan/multi-lang-github-action/.github/workflows/main.yml@master
- Example:
name: Nodejs CI
on:
push:
tags:
- v*
branches:
- master
- main
- feat/**
pull_request:
jobs:
test:
uses: trivonhan/multi-lang-github-action/.github/workflows/main.yml@master
with:
language: 'nodejs'
package_manager: 'pnpm'
- Must specify
languge
,package_manager
is optional. language
is now suportingRust
,Go
,Nodejs
,Python
package_manager
is now supportingnpm
,yarn
,pnpm