mirror of
https://github.com/gen2brain/cbconvert
synced 2025-10-14 10:38:51 +02:00
Add actions
This commit is contained in:
17
.github/workflows/build.yml
vendored
Normal file
17
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
on: [push, pull_request]
|
||||
name: Build
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.19
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Install package
|
||||
run: |
|
||||
sudo apt-get -y install libmagickcore-dev libmagickwand-dev
|
||||
- name: Build
|
||||
run: go build ./...
|
Reference in New Issue
Block a user