From ecc791ac7a61cd6f7ec4c21c48f8e2b344929db8 Mon Sep 17 00:00:00 2001 From: Aaron Harper Date: Sun, 22 Oct 2023 10:15:39 -0400 Subject: [PATCH] Try --- .github/workflows/ci.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a282b97..d2fd5e92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Python CI +name: "Python CI" on: push: @@ -6,34 +6,34 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: "ubuntu-latest" strategy: matrix: - python-version: [3.10] + python-version: ["3.10"] steps: - - uses: actions/checkout@v2 + - uses: "actions/checkout@v2" - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + - name: "Set up Python ${{ matrix.python-version }}" + uses: "actions/setup-python@v2" with: - python-version: ${{ matrix.python-version }} + python-version: "${{ matrix.python-version }}" - - name: Install - run: make install + - name: "Install" + run: "make install" - - name: Format check - run: make format-check + - name: "Format check" + run: "make format-check" - - name: Lint - run: make lint + - name: "Lint" + run: "make lint" - - name: Type check - run: make type-check + - name: "Type check" + run: "make type-check" - - name: Unit test - run: make utest + - name: "Unit test" + run: "make utest" - - name: Integration test - run: make itest + - name: "Integration test" + run: "make itest"