mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-06-27 22:31:43 +00:00
This commit includes the following changes * Bump github actions * Update tests github action to check documentation and streamline process * Update test cases to use temporary directories as roots * Simplify tox.ini
47 lines
827 B
YAML
47 lines
827 B
YAML
name: Setup
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
run-setup-minimal:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: archlinux:base
|
|
options: --privileged -w /build
|
|
volumes:
|
|
- ${{ github.workspace }}:/build
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup the minimal service in arch linux container
|
|
run: .github/workflows/setup.sh minimal
|
|
|
|
run-setup:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: archlinux:base
|
|
volumes:
|
|
- ${{ github.workspace }}:/build
|
|
options: --privileged -w /build
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup the service in arch linux container
|
|
run: .github/workflows/setup.sh
|