mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
27 lines
417 B
YAML
27 lines
417 B
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
run-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: archlinux:base
|
|
volumes:
|
|
- ${{ github.workspace }}:/build
|
|
options: -w /build
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Run check and tests in arch linux container
|
|
run: .github/workflows/tests.sh
|