mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 17:47:21 +01:00
d0705a6d6b
Remove separate targets for release. Replace travis-ci with github-actions Signed-off-by: Jguer <me@jguer.space>
16 lines
370 B
YAML
16 lines
370 B
YAML
name: Docker CI build
|
|
# This workflow is triggered on pushes to the repository.
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
# Job name is Greeting
|
|
name: Build and test yay
|
|
# This job runs on Linux
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1#
|
|
- name: Run Build and tests
|
|
run: ./testdata/travis.sh
|