From a6652058e073a0867e66c24cebb35651698f1804 Mon Sep 17 00:00:00 2001 From: Albert Chu Date: Sat, 26 Aug 2023 11:41:25 -0700 Subject: [PATCH] workflow: add basic github workflow --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c5b5762 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: build CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - name: clone genders + run: git clone https://github.com/chaos/genders.git + - name: build genders + run: cd genders && ./configure --prefix=/usr && make + - name: install genders + run: cd genders && sudo make install + - name: configure + run: ./configure + - name: make + run: make