diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2023-01-02 12:53:26 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2023-01-02 13:04:13 +0100 |
| commit | 57d49ddffa09ba524e2a344339ed0513c9fc6c20 (patch) | |
| tree | f56572146427fc0afd3ec12256ae6786f929cbae /.github/workflows | |
| parent | cf5b286fc06bf606b2b234ef27d4935d265a9c93 (diff) | |
| download | g-57d49ddffa09ba524e2a344339ed0513c9fc6c20.tar.gz g-57d49ddffa09ba524e2a344339ed0513c9fc6c20.zip | |
ci: travis -> github
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..9ec8993 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Run tests + run: make unit-test |
