github worfklows: WIP2 #5
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
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
name: kivi-tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Installiere Perl Module und Postgresql | |
run: | | |
cat /etc/apt/source.list | |
ls -lR /etc/ | |
cat /etc/apt/apt-mirrors.txt | |
sudo add-apt-repository universe | |
- name: install cpan modules that don't have deb packages | |
run: | | |
cpanm -L ${{ runner.temp }}/cpan HTML::Query | |
- name: Configurieren | |
run: | | |
cp config/kivitendo.conf.default config/kivitendo.conf | |
sed -i '/db[ ]*=/ s/$/ testdb/; /host/ s/localhost/127\.0\.0\.1/' config/kivitendo.conf | |
sudo sed -i '/host[ ]*all[ ]*all[ ]*127/s/scram-sha-256/trust/' /etc/postgresql/14/main/pg_hba.conf | |
- name: Postgresql starten | |
run: sudo service postgresql start | |
- name: Starten der Tests... | |
run: t/test.pl | |
env: | |
PERL5LIB: ${{ runner.temp }}/cpan/lib/perl5 |