Skip to content

ci: set timeout

ci: set timeout #63

Workflow file for this run

name: Linux
on:
- push
- pull_request
jobs:
centos:
name: Install
strategy:
fail-fast: false
matrix:
os:
- centos-7
- almalinux-8
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Install XMLua
run: |
docker build \
-t clear-code/xmlua-${{ matrix.os }} \
-f dockerfiles/Dockerfile.${{ matrix.os }} \
.
- name: Test
run: |
docker run \
clear-code/xmlua-${{ matrix.os }}