diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml new file mode 100644 index 000000000..964104f47 --- /dev/null +++ b/.github/workflows/continuous_integration.yml @@ -0,0 +1,51 @@ +name: Pull-Request-CI + +on: + pull_request: + branches: + - master + push: + branches: + - master + +jobs: + Build-and-Test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest] + python-version: ["3.6", "3.7", "3.8", "3.9"] + defaults: + run: + shell: bash -l {0} + steps: + - name: Checkout Code + uses: actions/checkout@v2 + - name: Setup ENV + uses: conda-incubator/setup-miniconda@v2 + with: + miniconda-version: "latest" + mamba-version: "*" + use-mamba: true + channels: conda-forge, defaults + channel-priority: strict + activate-environment: autocnet + environment-file: environment.yml + python-version: ${{ matrix.python-version }} + - name: Check build environment + run: | + conda list + - name: Install Python Package + run: | + python setup.py install + - name: Test Python Package + run: | + pytest --cov-report=xml + - name: Upload Coverage + uses: codecov/codecov-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true + verbose: true + if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'