Skip to content

Commit

Permalink
wip: migration from Travis CI to GitHub Actions #149
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-greffe committed Dec 9, 2023
1 parent fe1f295 commit dd8782b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push]

jobs:
test:
if: ${{ not(github.event.head_commit.message =~ /\[skip[ _-]test\]/) }}
if: ${{ !(github.event.head_commit.message =~ /\[skip[ _-]test\]/) }}
runs-on: ubuntu-latest
env:
DB_URL: "mongodb://mongo:27017"
Expand All @@ -21,7 +21,7 @@ jobs:
chmod +x ./.github/workflows/test.sh
./.github/workflows/test.sh
build:
if: ${{ not(github.event.head_commit.message =~ /(skip[ _-]app)/) }}
if: ${{ !(github.event.head_commit.message =~ /(skip[ _-]app)/) }}
runs-on: ubuntu-latest
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
Expand Down

0 comments on commit dd8782b

Please sign in to comment.