Disable all Aws related tests trying to use a real Aws instance (#1251) #122
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: Code coverage report to Codecov | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
name: Create and upload coverage | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/coverage-report | |
with: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
BOOST_VERSION: 1.78.0 | |
THRIFT_VERSION: 0.13.0 | |
RUN_TESTS: true | |
HAZELCAST_ENTERPRISE_KEY: ${{ secrets.HAZELCAST_ENTERPRISE_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
HZ_TEST_AWS_INSTANCE_PRIVATE_IP: ${{ secrets.HZ_TEST_AWS_INSTANCE_PRIVATE_IP }} | |
- name: Publish on Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: coverage.info |