Skip to content

fix: correct fis setup #5

fix: correct fis setup

fix: correct fis setup #5

Workflow file for this run

name: Test Dotfiles
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [ubuntu, arch]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and test on ${{ matrix.distro }}
run: |
docker build \
--file test/Dockerfile.${{ matrix.distro }} \
--tag dotfiles-test:${{ matrix.distro }} \
.
docker run --rm dotfiles-test:${{ matrix.distro }}