Skip to content

Switch Travis CI badge to GitHub Actions and update link #307

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Switch Travis CI badge to GitHub Actions and update link
  • Loading branch information
atouchet committed Aug 7, 2022
commit defa17189d457f2975210ee18a6ac77851345ca1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
rust-cssparser
==============

[![Build Status](https://travis-ci.com/servo/rust-cssparser.svg)](https://travis-ci.com/servo/rust-cssparser)
[![Build Status](https://github.com/servo/rust-cssparser/actions/workflows/main.yml/badge.svg)](https://github.com/servo/rust-cssparser/actions)

[Documentation](https://docs.rs/cssparser/)

Expand Down Expand Up @@ -53,5 +53,5 @@ Parsing CSS involves a series of steps:
It does however provide some helper functions to parse [CSS colors](src/color.rs)
and [An+B](src/nth.rs) (the argument to `:nth-child()` and related selectors.

See [Servo’s `style` crate](https://github.com/mozilla/servo/tree/master/components/style)
See [Servo’s `style` crate](https://github.com/servo/servo/tree/master/components/style)
for an example of a parser based on rust-cssparser.