mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-15 20:54:31 +00:00
21 lines
314 B
YAML
21 lines
314 B
YAML
name: Dev Containers
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Create dev environment
|
|
run: make dev-env
|
|
|
|
- name: Backend Unit tests
|
|
run: make be-tests-par |