Skip to content

ci: enable Dependabot for GitHub Actions #61

ci: enable Dependabot for GitHub Actions

ci: enable Dependabot for GitHub Actions #61

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
steps:
- uses: actions/checkout@master
- 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 }}