Migrate the plugin envelope for Elastic 8 #11
Workflow file for this run
This file contains hidden or 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: run-test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| # check the compilation and run tests | |
| test-plugin: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Image | |
| run: | | |
| docker build -f docker/Dockerfile.ci -t test-plugin . | |
| - name: Run tests | |
| run: | | |
| docker run --rm -v $(pwd):/workspace test-plugin |