Skip to content

Commit

Permalink
Switch from Circle to GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Aug 1, 2021
1 parent fb1dd01 commit 2cff0c9
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,27 @@
on:
push:
branches:
- master
pull_request:
name: CI
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Init Hermit
run: ./bin/hermit env -r >> $GITHUB_ENV
- name: Test
run: go test ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Init Hermit
run: ./bin/hermit env -r >> $GITHUB_ENV
- name: golangci-lint
run: golangci-lint run

0 comments on commit 2cff0c9

Please sign in to comment.