diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86fc7dc..5df1a74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,36 +1,36 @@ name: Testing duckreg - on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] - jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.9', '3.10', '3.11', '3.12'] - steps: - - name: Checkout repository - uses: actions/checkout@v3 + steps: + - name: Checkout repository + uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install . + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install . - - name: Install test dependencies - run: | - pip install pytest + - name: Install test dependencies + run: | + pip install pytest - - name: Run tests - run: | - pytest + - name: Run tests + run: | + pytest