Skip to content

Commit

Permalink
Try
Browse files Browse the repository at this point in the history
  • Loading branch information
amh4r committed Oct 22, 2023
1 parent 76e3a76 commit ecc791a
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
name: Python CI
name: "Python CI"

on:
push:
pull_request:

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"

0 comments on commit ecc791a

Please sign in to comment.