Index truncated token #83
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: Testing for dovecot-fts-flatcurve | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'src/**' | |
pull_request: | |
paths: | |
- 'src/**' | |
workflow_dispatch: | |
jobs: | |
debian_test: | |
name: Testing on Debian | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: flatcurve | |
- name: Copy test files to base directory | |
run: | | |
cp -av ./flatcurve/.github/actions/flatcurve-test-debian/* ./ | |
cp -av ./flatcurve/.github/common/* ./ | |
- uses: ./ | |
alpine_test: | |
name: Testing on Alpine | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: flatcurve | |
- name: Copy test files to base directory | |
run: | | |
cp -av ./flatcurve/.github/actions/flatcurve-test-alpine/* ./ | |
cp -av ./flatcurve/.github/common/* ./ | |
- uses: ./ |