Skip to content

Commit

Permalink
Migrate CircleCI basic config to the GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
OdNairy committed Apr 8, 2024
1 parent dae028c commit d93119b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on: push

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

- name: Configure .netrc
run: |
echo "machine api.mapbox.com login mapbox password ${{ secrets.SDK_REGISTRY_TOKEN }}" >> ~/.netrc
chmod 0600 ~/.netrc
- name: Check SPM manifest
run: swift package resolve

- name: Check CocoaPods manifest
run: pod spec lint

0 comments on commit d93119b

Please sign in to comment.