Skip to content

Move system testing and Openresty build to GitHub Actions #3

Move system testing and Openresty build to GitHub Actions

Move system testing and Openresty build to GitHub Actions #3

Workflow file for this run

name: System Testing
on:
push:
branches:
- master
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches:
- master
concurrency:
group: ${{ github.ref_name }}-system-testing
cancel-in-progress: true
jobs:
system-testing:
name: System Testing
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
cache: 'pip'
- name: Install Dependencies
run: pip install -r test/requirements.ci.txt
shell: bash
- name: Run System Testing
run: ./ci/system_testing.sh
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: test-log
path: ./test-log