Skip to content

Commit

Permalink
chore: switch from circleci to github actions (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
derektamsen authored Apr 15, 2023
1 parent 938f252 commit 29672a0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 'stable' ]

steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Install dependencies
run: |
sudo apt update && sudo apt install -y libcryptsetup-dev
- name: Lint
run: make lint

- name: Test
run: make test

0 comments on commit 29672a0

Please sign in to comment.