[Refactor] Update damage and heal functions in the Pokemon
class
#1953
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: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- main # Trigger on push events to the main branch | |
- beta # Trigger on push events to the beta branch | |
pull_request: | |
branches: | |
- main # Trigger on pull request events targeting the main branch | |
- beta # Trigger on pull request events targeting the beta branch | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
run-tests: | |
name: Run Tests | |
strategy: | |
matrix: | |
shard: [1, 2, 3, 4, 5] | |
uses: ./.github/workflows/test-shard-template.yml | |
with: | |
shard: ${{ matrix.shard }} | |
totalShards: 5 |