IWF-232: Add disabling sticky cache option #148
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: All tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
tests: | |
name: "All tests" | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Cadence/Temporal environment for integration tests" | |
run: docker compose -f docker-compose/ci-cadence-temporal-dependencies.yml up -d | |
- name: "Run all tests against cadence/temporal" | |
run: make ci-all-tests | |
- name: Dump docker logs | |
if: always() | |
uses: jwalton/gh-docker-logs@v2 | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |