From 400e2349c61601b3858e448005066293f0918933 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Tue, 22 Nov 2022 12:16:13 +0100 Subject: [PATCH] CI: Create initial GitHub Actions workflow Create a simple CI workflow that runs the Python tests with using GitHub Actions. --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..f3498e3dc --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +on: + push: + pull_request: + workflow_dispatch: + schedule: + - cron: '0 6 * * 1' # Each Monday at 06:00 UTC + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.x' + - run: ./autogen.sh + - run: ./configure + - run: make all + - run: python ./travis/nasm-t.py run