summaryrefslogtreecommitdiff
blob: 3f47829f9b05869cfde82002ad0c196fbcfbce9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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:
    runs-on: ubuntu-latest
    container: gentoo/stage3
    steps:
    - uses: actions/checkout@v4
    - name: Run tests
      run: |
        make check