From fbb4bddfade315f61f330fd98b0a2c9ebd282d1d Mon Sep 17 00:00:00 2001 From: Kaiyu Zheng <7720184+zkytony@users.noreply.github.com> Date: Fri, 26 Jan 2024 18:46:26 -0500 Subject: [PATCH] Adding CI (#47) * basic ci * ci workflow update * remove old ci --- .github/workflows/python-package.yml | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/python-package.yml diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml new file mode 100644 index 00000000..4a6c2785 --- /dev/null +++ b/.github/workflows/python-package.yml @@ -0,0 +1,33 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: pomdp-py package + +on: + push: + branches: [ "master", "dev-1.3.4-docs" ] + pull_request: + branches: [ "master", "dev-1.3.4-docs" ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.9", "3.10", "3.11"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -e . + - name: Test + run: | + python tests/test_all.py