From 671e94f492ff0b4de4638f8055dfa45addef12d5 Mon Sep 17 00:00:00 2001 From: ARYAN-NIKNEZHAD Date: Wed, 21 Aug 2024 16:43:42 +0430 Subject: [PATCH] :wrench: chore: CI action config(base) --- .github/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..86406f5 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: CI + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install coverage codecov pytest + pip install -r packages/requirements-dev.txt + - name: Run tests + run: | + coverage run -m pytest + - name: Generate coverage report + run: coverage xml + - name: Upload coverage to Codecov + run: codecov + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file