From 4b7766cdfdcd0fc85e6091bdccb5daef195fc8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Tue, 1 Oct 2024 15:29:49 +0200 Subject: Initial GitHub Actions test workflow --- .github/workflows/ci.yaml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/ci.yaml (limited to '.github/workflows') diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..a489f35 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,38 @@ +name: Check Erlang.mk + +on: + push: + branches: + - master + pull_request: + schedule: + ## Every Monday at 4am. + - cron: 0 4 * * 1 + +jobs: + check: + strategy: + fail-fast: false + matrix: + erlang: + - '27' + os: + - macos-latest + - ubuntu-latest + - windows-latest + extra: ['', 'LEGACY=1'] + runs-on: ${{ matrix.os }} + + steps: + + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install Erlang/OTP + uses: erlef/setup-beam@v1 + with: + otp-version: ${{ matrix.erlang }} + version-type: loose + + - name: Run tests + run: ${{ matrix.os == 'macos-latest' && 'gmake' || 'make' }} check -j 8 -k ${{ matrix.extra }} -- cgit v1.2.3