Hamlib/.github/workflows/c-cpp.yml

31 wiersze
550 B
YAML
Czysty Zwykły widok Historia

2021-04-14 18:18:24 +00:00
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: bootstrap
2021-08-16 12:23:39 +00:00
run: |
sudo apt install libusb-1.0-0-dev
2022-06-17 20:49:13 +00:00
sudo apt install grep
2021-08-16 12:23:39 +00:00
./bootstrap
- name: README Debug
2022-06-17 21:04:10 +00:00
run: grep README Makefile.am
2021-04-14 18:18:24 +00:00
- name: configure
run: ./configure
- name: make
run: make -j 4
2021-04-14 18:18:24 +00:00
- name: make check
run: make check
- name: make distcheck
run: make distcheck