docs(platform): remove tabs (#97) #415
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: build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Compile and Test 🔨 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # 4.1.6 | |
- name: Setup Python 3.9 | |
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # 5.1.0 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: make install | |
- name: Run tests | |
run: make test | |
- name: Upload coverage to Codecov 📝 | |
uses: "codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c" # 4.4.1 | |
with: | |
fail_ci_if_error: true | |
files: ./coverage-reports/coverage-report.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |