diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..d7bb720 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +on: [push, pull_request] +name: build +jobs: + build: + name: Build for ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-18.04, ubuntu-latest] + include: + - os: ubuntu-18.04 + - os: ubuntu-latest + fail-fast: false + + steps: + - name: Checkout sources + uses: actions/checkout@v2 + - name: Building + run: | + cd sources + ./autogen.sh + ./configure + make diff --git a/README.md b/README.md index 4efc5a3..fbfe503 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ jcal ==== - + + Packaging status + Jalali calendar is a small and portable free software library to manipulate date and time in Jalali calendar system. It's written in C and has absolutely zero dependencies. It works on top of any POSIX.1-2001 (and later) compatible libc implementations. Jalali calendar provides an API similar to that of libc's timezone, date and time functions.