mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
23 lines
403 B
YAML
23 lines
403 B
YAML
name: setup
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
run-setup:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: setup the service in arch linux container
|
|
run: |
|
|
docker run \
|
|
-v ${{ github.workspace }}:/build -w /build \
|
|
archlinux:latest \
|
|
.github/workflows/setup.sh
|