mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 13:42:02 +08:00
* use GitHub Actions as CI * bump versions * Makefile and Dockerfile improvements * upgrade logrus
22 lines
366 B
YAML
22 lines
366 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17.3
|
|
|
|
- name: run test cases
|
|
run: sudo apt install libaom-dev && make test && make
|
|
|