Reduce memory use #59
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: Test Cases | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.5.0 | |
- name: Install Node dependencies | |
run: yarn | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install pytest | |
run: pip install pytest | |
- name: Test programmers | |
run: | | |
yarn jest programmers.com | |
pytest programmers.com/learn/courses/30/lessons/*.py | |
- name: Test Baekjoon Online Judge | |
run: pytest acmicpc.net/problem/*.py | |
- name: Test GeeksforGeeks | |
run: | | |
yarn jest geeksforgeeks | |
pytest geeksforgeeks/*.py | |
- name: Test HackerRank | |
run: pytest hackerrank/*.py | |
- name: Test programming Interview | |
run: yarn jest programming-interview/*.test.ts |