From 241315c452b1b06e4b9721cf336d9ab150f7234d Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 16 Feb 2024 17:40:52 +0100 Subject: Added basic stdlib CI --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..60181eb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: Test standard library + +on: + push: + branches: + - main + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: freckle/stack-action@v5 + - name: Run tests + run: cd std/ && ./test_all.sh -- cgit v1.2.3