Remove wget dependency #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
check-update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
./update.sh | |
git diff --exit-code | |
check-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- env: | |
DOLI_INSTALL_AUTO: 0 | |
run: | | |
./update.sh | |
docker build -t dolibarr/dolibarr:develop images/develop | |
docker run -d -p 127.0.0.1:80:80 --name dolibarr dolibarr/dolibarr:develop | |
docker ps | grep -q dolibarr |