diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml new file mode 100644 index 000000000..03fcb13c0 --- /dev/null +++ b/.github/workflows/ci-macos.yml @@ -0,0 +1,23 @@ +name: ci-macos + +on: [ push, pull_request ] + +jobs: + build: + runs-on: macos-latest + strategy: + matrix: + python-version: [ "3.10", "3.11", "3.12" ] + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: update package manager & install python3 environment + run: | + sudo pip install poetry + poetry install \ No newline at end of file diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml new file mode 100644 index 000000000..4e5befab6 --- /dev/null +++ b/.github/workflows/ci-windows.yml @@ -0,0 +1,23 @@ +name: ci-windows + +on: [ push, pull_request ] + +jobs: + build: + runs-on: windows-latest + strategy: + matrix: + python-version: [ "3.10", "3.11", "3.12" ] + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: update package manager & install python3 environment + run: | + pip install poetry + poetry install \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f48ae7c80..84c928ddc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: [ push, pull_request ] jobs: build: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, macos-latest, windows-latest] strategy: matrix: python-version: [ "3.10", "3.11", "3.12" ]