remove Python package, drop Elasticsearch 1.0.3 support, get CI working again #31
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: ${{ matrix.task }} (ES ${{ matrix.es_version }}) | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
#---# | |
# R # | |
#---# | |
- task: rpkg | |
es_version: 1.0.3 | |
- task: rpkg | |
es_version: 1.7.6 | |
- task: rpkg | |
es_version: 2.4.6 | |
- task: rpkg | |
es_version: 5.6.16 | |
- task: rpkg | |
es_version: 6.0.1 | |
- task: rpkg | |
es_version: 6.8.15 | |
- task: rpkg | |
es_version: 7.1.1 | |
- task: rpkg | |
es_version: 7.2.1 | |
- task: rpkg | |
es_version: 7.3.2 | |
- task: rpkg | |
es_version: 7.4.2 | |
- task: rpkg | |
es_version: 7.5.2 | |
- task: rpkg | |
es_version: 7.6.2 | |
- task: rpkg | |
es_version: 7.7.1 | |
- task: rpkg | |
es_version: 7.8.1 | |
- task: rpkg | |
es_version: 7.9.3 | |
- task: rpkg | |
es_version: 7.10.2 | |
- task: rpkg | |
es_version: 7.11.2 | |
- task: rpkg | |
es_version: 7.12.1 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: set up R | |
if: matrix.task == 'rpkg' | |
uses: r-lib/actions/setup-r@v1 | |
with: | |
r-version: '4.1.0' | |
- name: set up pandoc | |
if: matrix.task == 'rpkg' | |
uses: r-lib/actions/setup-pandoc@v1 | |
- name: run tests | |
shell: bash | |
run: | | |
export CONDA_DIR=${HOME}/miniconda3 | |
export ES_VERSION=${{ matrix.es_version }} | |
export PATH=${CONDA_DIR}/bin:${HOME}/.local/bin:$PATH | |
export TASK="${{ matrix.task }}" | |
$GITHUB_WORKSPACE/.ci/setup.sh | |
$GITHUB_WORKSPACE/.ci/install.sh | |
$GITHUB_WORKSPACE/setup_local.sh ${{ matrix.es_version }} | |
$GITHUB_WORKSPACE/.ci/test.sh | |
$GITHUB_WORKSPACE/.ci/report_to_covr.sh | |
# https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert | |
all-successful: | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- name: Note that all tests succeeded | |
run: echo "🎉" |