Updated project metadata to use group email address #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-main: | |
env: | |
TEST_ES_SERVER: http://localhost:9250 | |
PORT: 9250 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [ '2.6', '2.7', '3.0', '3.1', 'jruby-9.3' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Increase system 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: elastic/elastic-github-actions/elasticsearch@master | |
with: | |
stack-version: 8.0.0-SNAPSHOT | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Build | |
run: | | |
sudo apt-get update | |
bundle install | |
- name: elasticsearch-dsl | |
run: bundle exec rake test:all |