Skip to content

Commit

Permalink
ci: add github action job.
Browse files Browse the repository at this point in the history
  • Loading branch information
roddhjav committed Feb 27, 2024
1 parent e61b918 commit 84563d3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Ubuntu

on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-22.04
steps:

- name: Check out repository code
uses: actions/checkout@v3

- name: Install Build dependencies
run: |
sudo apt-get update -q
sudo apt-get install -y \
pass tomb kcov
- name: Tests preparation
run: |
sudo swapoff -a
- name: Tests
run: |
make tests

0 comments on commit 84563d3

Please sign in to comment.