aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-07-26 23:48:13 -0700
committerHaibo Huang <hhb@google.com>2020-07-26 23:48:13 -0700
commite23d8e27aa74e468a0c3703e3b8fdd896a15d7bf (patch)
treedd36ed2ad7763fe9ee9537a2c243e99513ae2aea /.github
parentf490e91415e81a1ead338b38bd50fbcb6387eb43 (diff)
downloadproc-macro-hack-e23d8e27aa74e468a0c3703e3b8fdd896a15d7bf.tar.gz
Upgrade rust/crates/proc-macro-hack to 0.5.18
Change-Id: I4e17bf83d28687a52026191a93e1768afc89f2ff
Diffstat (limited to '.github')
-rw-r--r--.github/FUNDING.yml1
-rw-r--r--.github/workflows/ci.yml4
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000..7507077
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1 @@
+github: dtolnay
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fea412f..ca24eac 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -12,11 +12,13 @@ jobs:
strategy:
fail-fast: false
matrix:
- rust: [nightly, beta, stable, 1.31.0]
+ rust: [nightly, beta, stable, 1.42.0, 1.31.0]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
+ - if: matrix.rust == '1.31.0'
+ run: echo 'extern crate proc_macro;' >> demo-hack-impl/src/lib.rs
- run: cargo run --manifest-path example/Cargo.toml
- run: cargo test --all