Update README.md: clean up problem details and remove hidden test cas… #2
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: Test Solutions | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: Run tests | |
| run: | | |
| python test_local.py | |
| - name: Success | |
| if: success() | |
| run: echo "✅ All shown test cases passed! Good job!" | |
| - name: Failure | |
| if: failure() | |
| run: echo "❌ Some tests failed. Check the logs above and fix your code." |