Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
Enable GH actions (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
gares authored Jun 17, 2020
1 parent 4017745 commit 0e5981f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: main

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-16.04

steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt-get install txt2man pkg-config libglib2.0-dev libgtk-3-dev libnotify-dev libgee-0.8-dev lua5.1 moreutils xdelta
- name: build
run: make
- name: test
run: make test
- uses: actions/upload-artifact@v2
if: failure()
with:
name: test-logs
path: tests.d/run/*/*/log.*

0 comments on commit 0e5981f

Please sign in to comment.