https://github.com/keisukeyamashita/memcached-actions
Github Actions for Memcached
https://github.com/keisukeyamashita/memcached-actions
github-actions memcached
Last synced: 6 months ago
JSON representation
Github Actions for Memcached
- Host: GitHub
- URL: https://github.com/keisukeyamashita/memcached-actions
- Owner: KeisukeYamashita
- License: apache-2.0
- Created: 2020-04-29T08:37:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-02T18:40:16.000Z (over 5 years ago)
- Last Synced: 2024-10-05T12:23:44.123Z (about 1 year ago)
- Topics: github-actions, memcached
- Language: Shell
- Homepage: https://github.com/marketplace/actions/memcached-actions
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Memcached Actions
[](https://github.com/memcached/memcached/releases)
[](https://github.com/marketplace/actions/memcached-actions)
[](https://github.com/KeisukeYamashita/memcached-actions/actions?query=workflow%3ATest)
[](https://github.com/KeisukeYamashita/memcached-actions/releases)
[](./LICENSE)> This GitHub actions configures and runs a memcached cluster or a node in your action workflow.
## Usage
### Run a single node
```yaml
- uses: KeisukeYamashita/memcached-actions@v1
```## Basics
### Inputs
#### ports
Default is `11211` which means that this action will run a single memcached node.
```yaml
uses: KeisukeYamashita/memcahed-action@v1
```Pass an array of the ports of the memcached servers in `,` seperated. If you want to run a memcached cluster with 3 nodes with `11211`, `11212`, `11213` port, your config should be as below:
```yaml
uses: KeisukeYamashita/memcached-actions@v1
with:
ports: "11211,11212,11213"
```## Author
* [KeisukeYamashita](https://github.com/KeisukeYamashita)
## LICENSE
The driver is released under the Apache 2.0 license. See the [LICENSE](./LICENSE) for more information.