mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
move logic to separated shell scripts and also create shell script for repository setup Also force create directory according to systemd recommendations
22 lines
404 B
YAML
22 lines
404 B
YAML
name: tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
run-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: run check and tests in arch linux container
|
|
run: |
|
|
docker run \
|
|
-v ${{ github.workspace }}:/build -w /build \
|
|
archlinux:latest \
|
|
.github/workflows/tests.sh
|