From c770b975a6c24e93eff8cdc39d6446f2b86ee31e Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Wed, 15 Jan 2020 19:42:12 -0800 Subject: [PATCH 1/3] Create swift.yml --- .github/workflows/swift.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 000000000..c4445d4f6 --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,19 @@ +name: Swift + +on: [push] + +jobs: + xenial: + container: + image: swift:5.1-xenial + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: swift test + bionic: + container: + image: swift:5.1-bionic + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: swift test From be598f19e5bc2e25dfbf7f729464e3b600df050b Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Wed, 15 Jan 2020 19:49:22 -0800 Subject: [PATCH 2/3] Delete swift.yml --- .github/workflows/swift.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml deleted file mode 100644 index c4445d4f6..000000000 --- a/.github/workflows/swift.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Swift - -on: [push] - -jobs: - xenial: - container: - image: swift:5.1-xenial - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: swift test - bionic: - container: - image: swift:5.1-bionic - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: swift test From b3108805ce8918f27d78c7f3848cbd54e06a78e0 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Wed, 15 Jan 2020 22:25:07 -0800 Subject: [PATCH 3/3] Create main.yml --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..f2a187d6c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: main + +on: [push] + +jobs: + xenial: + container: + image: swift:5.1-xenial + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: swift test + bionic: + container: + image: swift:5.1-bionic + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: swift test