mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-31 01:30:02 +02:00
17 lines
317 B
YAML
17 lines
317 B
YAML
name: C/C++ CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: tomahawkmusicplayer/ubuntu:latest
|
|
env:
|
|
MIX_ENV: test
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@master
|
|
- name: Build and test
|
|
run: /usr/local/bin/build-and-test.sh
|