Update dependency apple/swift-collections to from: "1.1.4" #209
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: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
set -ex | |
for dir in Versions/*; do | |
if [[ -d "$dir" && ("$dir" == Versions/5.3* || "$dir" == Versions/5.4*) ]]; then | |
docker build --rm --no-cache "$dir" | |
docker system prune -a -f | |
fi | |
done |