Browse Source

Create cmake4ubuntu.yml

Chunel 2 years ago
committed by GitHub
parent
commit
76d54b12f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions
  1. +23
    -0
      .github/workflows/cmake4ubuntu.yml

+ 23
- 0
.github/workflows/cmake4ubuntu.yml View File

@ -0,0 +1,23 @@
name: CMake4Ubuntu
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck

Loading…
Cancel
Save