summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
blob: 9d5feee1b1cdcb1938340c4b07bcd690fac8488e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
on: [push]

name: CI

jobs:
  tests:
    name: Tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Install PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: 8.3
          coverage: none
      - name: Install dependencies
        run: composer update --no-interaction --no-ansi --no-progress
      - name: Run phel tests
        run: vendor/bin/phel test