Added integration tests in a lot of different platforms #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
archlinux: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
volumes: | |
- ${{ github.workspace }}:/fades | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
pacman -Sy --noconfirm python3 python-setuptools | |
- name: Simple fades run | |
run: | | |
cd /fades | |
bin/fades -v -d pytest -x pytest --version | |
fedora: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
volumes: | |
- ${{ github.workspace }}:/fades | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
yum install --assumeyes python3-setuptools | |
- name: Simple fades run | |
run: | | |
cd /fades | |
bin/fades -v -d pytest -x pytest --version |