Skip to content

docs(platform): account example orgid #398

docs(platform): account example orgid

docs(platform): account example orgid #398

Workflow file for this run

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: Setup Python 3.9
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
with:
python-version: '3.9'
- name: Install dependencies
run: make install
- name: Run tests
run: make test
- name: Upload coverage to Codecov 📝
# https://github.com/codecov/codecov-action codecov/2.1.0
# Pinned this to a git sha as per recommendations in GitHub actions hardening guide.
# see https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
uses: "codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b"
with:
fail_ci_if_error: true
files: ./coverage-reports/coverage-report.xml