Skip to content

Commit

Permalink
Github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
j3lte committed Nov 4, 2022
1 parent 0ac60a2 commit 8511293
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
pull_request:
branches: [ "main" ]
paths-ignore: [ "docs/**" ]

push:
paths-ignore: [ "docs/**" ]


jobs:
pytest:
runs-on: ubuntu-latest

steps:
- name: Checkout Code Repository
uses: actions/checkout@v2

- name: Build the Stack
run: docker-compose build
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
version: "3.9"
services:
torproxy:
build:
context: .
dockerfile: Dockerfile
image: debian-torproxy
container_name: debian-torproxy
build: .
restart: unless-stopped
ports:
- "8118:8118"
Expand Down

0 comments on commit 8511293

Please sign in to comment.