https://github.com/smoothbear/workflow-playground
Practice github workflows!
https://github.com/smoothbear/workflow-playground
Last synced: 10 months ago
JSON representation
Practice github workflows!
- Host: GitHub
- URL: https://github.com/smoothbear/workflow-playground
- Owner: smoothbear
- Created: 2021-06-17T11:15:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-28T07:01:45.000Z (over 4 years ago)
- Last Synced: 2025-02-26T23:55:25.537Z (10 months ago)
- Size: 55.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

## Workflow Playground
### Contents
* [Introduction](#Introduction)
* [Playground List](#Playground-List)
* [How to test workflows in local](#How-to-test-workflows-in-local)
* Issue
-----
### Introduction
* This repository is to practice [Github Workflow](https://docs.github.com/en/actions) patterns.
-----
### Playground List
* [1. Basic concepts](https://github.com/smoothbear/workflow-playground/tree/main/1.%20Basic%20concepts)
-----
### How to test workflows in local
Install [nektos/act](https://github.com/nektos/act) for testing.
* Mac
```shell
brew install act
```
* Linux
```shell
curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
```
* Windows
```powershell
choco install act-cli
```
or using scoop
```powershell
scoop install act
```
Run workflows by using act
* Write workflows in .github/workflows
* Run below command
```shell
act -j
```