├── .github └── workflows │ ├── run-action.yml │ └── test.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── action.yml ├── download-wush.sh └── test.py /.github/workflows/run-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/.github/workflows/run-action.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/action.yml -------------------------------------------------------------------------------- /download-wush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/download-wush.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder/wush-action/HEAD/test.py --------------------------------------------------------------------------------