Skip to content

Initial commit: Set up project structure and configuration #1

Initial commit: Set up project structure and configuration

Initial commit: Set up project structure and configuration #1

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build Docker image
run: docker build -t django-api-versioning-test .
- name: Run tests in Docker
run: docker run --rm django-api-versioning-test