diff options
| author | Mustafa Quraish <[email protected]> | 2022-01-31 03:10:58 -0500 |
|---|---|---|
| committer | Mustafa Quraish <[email protected]> | 2022-01-31 03:21:09 -0500 |
| commit | 0165330faaa6c7feaff49498834420e6877b4297 (patch) | |
| tree | a0c339d66c5414f768956f8f99db1fdfdb1272e8 /.github/workflows | |
| parent | Move around tests in the categories; Add missing tests (diff) | |
| download | cup-0165330faaa6c7feaff49498834420e6877b4297.tar.xz cup-0165330faaa6c7feaff49498834420e6877b4297.zip | |
Add workflow to run tests on push
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..fd478ad --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,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 |