Skip to content

Allowed not logged in users to view community posts #278

Allowed not logged in users to view community posts

Allowed not logged in users to view community posts #278

Workflow file for this run

# CI Backend
name: CI BE
on:
pull_request:
branches:
- main
jobs:
build_dev_test:
name: Build Backend For Dev files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Backend For Dev files
run: |
docker build -t dev-backend -f Dockerfile.dev .
- name: Run Backend For Testing Dev files
run: |
docker run --rm dev-backend