Skip to content

Implement GitHub actions #1

Implement GitHub actions

Implement GitHub actions #1

Workflow file for this run

name: Code Quality
on: [pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/build.yml
- name: Run tests
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/build.yml
- name: Run linter
run: make lint