Skip to content

Commit 255c42c

Browse files
committed
Feed API Challenge
0 parents  commit 255c42c

17 files changed

+1178
-0
lines changed

.github/workflows/CI.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: CI
3+
4+
# Controls when the action will run. Triggers the workflow on push or pull request
5+
# events but only for the master branch
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13+
jobs:
14+
# This workflow contains a single job called "build"
15+
build-and-test:
16+
# The type of runner that the job will run on
17+
runs-on: macos-latest
18+
19+
# Steps represent a sequence of tasks that will be executed as part of the job
20+
steps:
21+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22+
- uses: actions/checkout@v2
23+
24+
- name: Select Xcode
25+
run: sudo xcode-select -switch /Applications/Xcode_11.5.app
26+
27+
- name: Xcode version
28+
run: /usr/bin/xcodebuild -version
29+
30+
- name: Build and Test
31+
run: xcodebuild clean build test -project FeedAPIChallenge.xcodeproj -scheme "FeedAPIChallenge" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO

.gitignore

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Created by https://www.gitignore.io/api/swift,xcode
2+
3+
### Swift ###
4+
# Xcode
5+
#
6+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7+
8+
## Build generated
9+
build/
10+
DerivedData/
11+
12+
## Various settings
13+
*.pbxuser
14+
!default.pbxuser
15+
*.mode1v3
16+
!default.mode1v3
17+
*.mode2v3
18+
!default.mode2v3
19+
*.perspectivev3
20+
!default.perspectivev3
21+
xcuserdata/
22+
23+
## Other
24+
*.moved-aside
25+
*.xccheckout
26+
*.xcscmblueprint
27+
28+
## Obj-C/Swift specific
29+
*.hmap
30+
*.ipa
31+
*.dSYM.zip
32+
*.dSYM
33+
34+
## Playgrounds
35+
timeline.xctimeline
36+
playground.xcworkspace
37+
38+
# Swift Package Manager
39+
#
40+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
41+
# Packages/
42+
# Package.pins
43+
# Package.resolved
44+
.build/
45+
46+
# CocoaPods
47+
#
48+
# We recommend against adding the Pods directory to your .gitignore. However
49+
# you should judge for yourself, the pros and cons are mentioned at:
50+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
51+
#
52+
# Pods/
53+
#
54+
# Add this line if you want to avoid checking in source code from the Xcode workspace
55+
# *.xcworkspace
56+
57+
# Carthage
58+
#
59+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
60+
# Carthage/Checkouts
61+
62+
Carthage/Build
63+
64+
# fastlane
65+
#
66+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
67+
# screenshots whenever they are needed.
68+
# For more information about the recommended setup visit:
69+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
70+
71+
fastlane/report.xml
72+
fastlane/Preview.html
73+
fastlane/screenshots/**/*.png
74+
fastlane/test_output
75+
76+
### Xcode ###
77+
# Xcode
78+
#
79+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
80+
81+
## User settings
82+
83+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
84+
85+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
86+
87+
### Xcode Patch ###
88+
*.xcodeproj/*
89+
!*.xcodeproj/project.pbxproj
90+
!*.xcodeproj/xcshareddata/
91+
!*.xcworkspace/contents.xcworkspacedata
92+
/*.gcno
93+
94+
# End of https://www.gitignore.io/api/swift,xcode

0 commit comments

Comments
 (0)