diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 04:25:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 04:25:26 +0000 |
commit | 5ceacb82619304a784634ee5bb0ad0ea4e54ab3c (patch) | |
tree | 3b5e6fd489662166a27092ed563714d2a678576a /.github/workflows | |
parent | Initial commit. (diff) | |
download | package-notes-5ceacb82619304a784634ee5bb0ad0ea4e54ab3c.tar.xz package-notes-5ceacb82619304a784634ee5bb0ad0ea4e54ab3c.zip |
Adding upstream version 0.10~exp.upstream/0.10_exp
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/tests.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..4b39fba --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,25 @@ +--- +# SPDX-License-Identifier: CC0-1.0 +# vi: ts=2 sw=2 et: + +name: Run tests +on: [pull_request] + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-22.04 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + strategy: + fail-fast: false + steps: + - name: Repository checkout + uses: actions/checkout@v4 + - name: Install dependencies + run: sudo apt -y update && sudo apt -y install python3-pyelftools python3-pytest + - name: Run tests + run: make check |