aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: fd478adf121862677062367f319e00ca714cee55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Test

on: [push, pull_request]

jobs:
  build_and_test_serenity:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: "Install Ubuntu dependencies"
        
        run: |
          sudo apt-get update
          sudo apt-get install -y build-essential nasm

      - name: Run tests
        run: cd ${{ github.workspace }} && make test