Skip to content

Commit

Permalink
testing github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lihis committed Feb 4, 2024
1 parent 0f83c16 commit 4cecca0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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: apt-get update && apt-get install -yq python3
- name: Build and Test
run: scripts/docker/docker_travis.sh "${{ matrix.distro }}_latest.docker"
File renamed without changes.

0 comments on commit 4cecca0

Please sign in to comment.