Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ezefranca committed Jul 24, 2024
2 parents d89a171 + 4838d98 commit 525cafd
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
Binary file removed .DS_Store
Binary file not shown.
22 changes: 22 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift

name: Swift

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GoogleScholarSwift

[![Build Status](https://github.com/ezefranca/GoogleScholarFetcher/actions/workflows/workflow.yml/badge.svg)](https://github.com/ezefranca/GoogleScholarFetcher/actions/workflows/workflow.yml)
[![Swift](https://github.com/ezefranca/GoogleScholarSwift/actions/workflows/swift.yml/badge.svg)](https://github.com/ezefranca/GoogleScholarSwift/actions/workflows/swift.yml)

The `GoogleScholarSwift` package provides an easy-to-use interface for fetching publication data from Google Scholar. It allows users to retrieve detailed information about an author's publications, including titles, publication years, links, and citation counts. This package is designed for academics, researchers, and anyone interested in programmatically analyzing scholarly publication data.

Expand All @@ -10,7 +10,7 @@ To integrate `GoogleScholarSwift` into your Xcode project using Swift Package Ma

```swift
dependencies: [
.package(url: "https://github.com/ezefranca/GoogleScholarFetcher.git", from: "1.0.0")
.package(url: "https://github.com/ezefranca/GoogleScholarSwift.git", from: "1.0.1")
]
```

Expand Down Expand Up @@ -159,7 +159,7 @@ fetcher.fetchAllPublications(authorID: "6nOPl94AAAAJ", sortBy: "pubdate") { publ

## Contributing

We welcome contributions to `GoogleScholarFetcher`! If you have suggestions for improvements, please open an issue or a pull request.
We welcome contributions to `GoogleScholarSwift`! If you have suggestions for improvements, please open an issue or a pull request.

## Similar projects

Expand Down

0 comments on commit 525cafd

Please sign in to comment.