Skip to content

Commit

Permalink
Migrate to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nadimkobeissi committed Aug 19, 2023
1 parent bfed6bc commit 3a3f41d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
container:
image: golang:latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: make dep
- name: Run lint
run: make lint
- name: Run tests
run: make test
18 changes: 0 additions & 18 deletions .gitlab-ci.yml

This file was deleted.

0 comments on commit 3a3f41d

Please sign in to comment.