diff options
author | Sam James <sam@gentoo.org> | 2024-11-15 04:16:26 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-15 04:16:26 +0000 |
commit | e18736795f935f340c638d48c7b39c23d3e78c2f (patch) | |
tree | 07f0b8126477e946433931b2485383caee38b073 | |
parent | patches: cross: cross 2.5 for libtool-2.5.x (diff) | |
download | elt-patches-e18736795f935f340c638d48c7b39c23d3e78c2f.tar.gz elt-patches-e18736795f935f340c638d48c7b39c23d3e78c2f.tar.bz2 elt-patches-e18736795f935f340c638d48c7b39c23d3e78c2f.zip |
ci: add basic 'make check' workflow
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | .github/workflows/build.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..502583d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +# GitHub actions workflow. +# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions + +name: CI + +on: [pull_request, push] + +jobs: + make: + steps: + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y build-essential autoconf + esac + - uses: actions/checkout@v4 + - name: Run tests + - run: | + make check |