diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..62a4d3a --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,16 @@ +on: [push] + +jobs: + update_database: + runs-on: ubuntu-latest + steps: + - name: All tools we need + run: apt update && apt install -y default-jre git php php-dom php-curl php-sqlite3 + - name: Checkout + uses: actions/checkout@v4 + - name: run test + run: | + ls -la /etc/php* + #sed -i "/^error_reporting/c\error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING & ~E_NOTICE" /etc/php82/php.ini + + \ No newline at end of file