diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-30 18:10:44 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-01 20:18:10 +0100 |
commit | 99beeb1f4a51a7fad2d1620aa5c7851a1938554c (patch) | |
tree | d2cf7e5aca8a5489acbd605c8ba2cda839d8edc2 /.github | |
parent | c315330cbee1c0fbd10352e0a38b51874f649cd0 (diff) | |
download | libquotient-99beeb1f4a51a7fad2d1620aa5c7851a1938554c.tar.gz libquotient-99beeb1f4a51a7fad2d1620aa5c7851a1938554c.zip |
A few renames; trigger by PRs too; start quotest
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68fca800..b2d2cab4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,17 +1,20 @@ -name: CMake +name: CI -on: [push] +on: + push: + pull_request: + types: [opened, reopened] defaults: run: shell: bash jobs: - build: + CI: runs-on: ${{ matrix.os }} strategy: fail-fast: false -# max-parallel: 1 + max-parallel: 1 matrix: os: [ubuntu-18.04, macos-10.15] e2ee: ['e2ee', ''] @@ -67,5 +70,8 @@ jobs: cmake tests -Bbuild-test $CMAKE_ARGS cmake --build build-test --target all -# - name: Run tests -# run: build-test/quotest + - name: Run tests + env: + TEST_USER: ${{ secrets.TEST_USER }} + TEST_PWD: ${{ secrets.TEST_PWD }} + run: build-test/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "CI job ${{ github.job }}" |