Merge pull request #507 from VernissageApp/bugfix/note-tag-media-type #1072
This file contains hidden or 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: Build Server | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install swift | |
| uses: SwiftyLab/setup-swift@latest | |
| with: | |
| swift-version: '6.2' | |
| - name: Update libraries | |
| run: sudo apt-get -q update | |
| - name: Update distribution | |
| run: sudo apt-get -q dist-upgrade -y | |
| - name: Install libraries | |
| run: sudo apt-get install -y libgd-dev libexif-dev libiptcdata0-dev | |
| - name: Build | |
| run: swift build | |
| - name: Tests | |
| run: swift test --no-parallel |