Skip to content

Commit

Permalink
Merge pull request #4 from chu11/build_test
Browse files Browse the repository at this point in the history
workflow: add basic github workflow
  • Loading branch information
chu11 authored Aug 26, 2023
2 parents 6de2973 + a665205 commit f9a4344
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f9a4344

Please sign in to comment.