Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 421 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 421 Bytes

elasticsearch-github-actions

setup elasticsearch in your github actions' workflow

Usage

steps:
- name: Configure sysctl limits
  run: |
    sudo swapoff -a
    sudo sysctl -w vm.swappiness=1
    sudo sysctl -w fs.file-max=262144
    sudo sysctl -w vm.max_map_count=262144

- uses: miyataka/elasticsearch-github-actions@1
  with:
    stack-version: '7.6.2'
    plugins: 'analysis-kuromoji analysis-icu'