From 7ef5fd684c7becfd37bb3f46dad9a511f953474e Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Mon, 7 Dec 2020 12:28:52 +0100 Subject: [PATCH] CI test --- .github/workflows/main.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..7fb1018c16 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: Check SQLite sources + +on: + push: + branches: [ sqlite ] + +workflow_dispatch: + +jobs: + validate: + name: "Validate SQLite sources" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 1 + - name: Determine SQLite version + run: grep -E "^#define.*SQLITE_VERSION_NUMBER" sqlite3.h