Skip to content

Commit fb2aac2

Browse files
Merge pull request #72 from alchemy-swift/async
concurrency, testing, filesystem, content, configs and more!
2 parents 0ee997d + f9f6638 commit fb2aac2

File tree

370 files changed

+14998
-12448
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

370 files changed

+14998
-12448
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,26 @@ on:
99

1010
jobs:
1111
test-macos:
12-
runs-on: macos-11
12+
if: ${{ false }} # disable until macOS 12 (with concurrency) runners are available.
13+
runs-on: macos-12
14+
env:
15+
DEVELOPER_DIR: /Applications/Xcode_13.2.app/Contents/Developer
1316
steps:
1417
- uses: actions/checkout@v2
1518
- name: Build
1619
run: swift build -v
1720
- name: Run tests
1821
run: swift test -v
1922
test-linux:
20-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-20.04
2124
strategy:
2225
matrix:
23-
swift: [5.4]
26+
swift: [5.5]
2427
container: swift:${{ matrix.swift }}
2528
steps:
2629
- uses: actions/checkout@v2
30+
- name: Install sqlite
31+
run: apt-get -q update && apt-get install -y libsqlite3-dev
2732
- name: Build
2833
run: swift build -v --enable-test-discovery
2934
- name: Run tests

Docs/0_GettingStarted.md

Lines changed: 0 additions & 62 deletions
This file was deleted.

Docs/10_DiggingDeeper.md

Lines changed: 0 additions & 268 deletions
This file was deleted.

0 commit comments

Comments
 (0)