alllexxx1/python-project-83

View on GitHub
.github/workflows/page_analyzer.yaml

Summary

Maintainability
Test Coverage
name: CI
on:
  - push
  - pull_request
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v4
        with:
          python-version: ${{ matrix.python-version }}
        # make depends on poetry
      - name: Install dependencies
        run: |
          pip install poetry
          make install
      - name: Run linter
        run:
          make lint
      - name: check
        uses: actions/checkout@v3
        with:
          CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}