Skip to content

testing github actions #6

testing github actions

testing github actions #6

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "master", "migrate-ci" ]
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: Release
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [ "ubuntu", "fedora", "archlinux" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -yq python3
- name: Build and Test
run: scripts/docker/docker_travis.sh "${{ matrix.distro }}_latest.docker"